[BACK]Return to extern.h CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / texi2mdoc

Diff for /texi2mdoc/extern.h between version 1.23 and 1.26

version 1.23, 2015/03/01 16:57:39 version 1.26, 2015/03/05 08:35:35
Line 55  enum texicmd {
Line 55  enum texicmd {
         TEXICMD_AT,          TEXICMD_AT,
         TEXICMD_AUTHOR,          TEXICMD_AUTHOR,
         TEXICMD_B,          TEXICMD_B,
           TEXICMD_BACKSLASH,
         TEXICMD_BANG,          TEXICMD_BANG,
         TEXICMD_BULLET,          TEXICMD_BULLET,
         TEXICMD_BYE,          TEXICMD_BYE,
Line 376  struct texi {
Line 377  struct texi {
         size_t            chapnum; /* current chapter node */          size_t            chapnum; /* current chapter node */
         char            **dirs; /* texi directories */          char            **dirs; /* texi directories */
         size_t            dirsz; /* number of texi directories */          size_t            dirsz; /* number of texi directories */
         FILE             *outfile;          FILE             *outfile; /* current output stream */
         /*          /*
          * Run-time parameters.           * Run-time parameters.
          */           */
Line 393  struct texi {
Line 394  struct texi {
         size_t            valsz; /* entries in vals */          size_t            valsz; /* entries in vals */
         struct teximacro *macros; /* @macro entries */          struct teximacro *macros; /* @macro entries */
         size_t            macrosz; /* entries in macros */          size_t            macrosz; /* entries in macros */
           char             *copying; /* the @copying block */
           size_t            copyingsz; /* length of @copying */
         /*          /*
          * The following control what we output to the screen.           * The following control what we output to the screen.
          * The complexity is required to accomodate for mdoc(7).           * The complexity is required to accomodate for mdoc(7).
Line 404  struct texi {
Line 407  struct texi {
         int               seenvs; /* newline has been Pp'd */          int               seenvs; /* newline has been Pp'd */
         int               ign; /* if >0, don't print anything */          int               ign; /* if >0, don't print anything */
         int               literal; /* if >0, literal context */          int               literal; /* if >0, literal context */
           int               uppercase; /* if >0, uppercase */
 };  };
   
 #define BUF(_p) ((_p)->files[(_p)->filepos - 1].map)  #define BUF(_p) ((_p)->files[(_p)->filepos - 1].map)

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.26

CVSweb