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

Diff for /texi2mdoc/extern.h between version 1.2 and 1.3

version 1.2, 2015/02/20 12:25:25 version 1.3, 2015/02/21 17:00:33
Line 54  enum texicmd {
Line 54  enum texicmd {
         TEXICMD_CONTENTS,          TEXICMD_CONTENTS,
         TEXICMD_COPYING,          TEXICMD_COPYING,
         TEXICMD_COPYRIGHT,          TEXICMD_COPYRIGHT,
           TEXICMD_DEFCODEINDEX,
         TEXICMD_DEFFN,          TEXICMD_DEFFN,
         TEXICMD_DEFFNX,          TEXICMD_DEFFNX,
           TEXICMD_DEFINDEX,
         TEXICMD_DEFMAC,          TEXICMD_DEFMAC,
         TEXICMD_DEFMACX,          TEXICMD_DEFMACX,
         TEXICMD_DEFTP,          TEXICMD_DEFTP,
Line 120  enum texicmd {
Line 122  enum texicmd {
         TEXICMD_IMAGE,          TEXICMD_IMAGE,
         TEXICMD_INCLUDE,          TEXICMD_INCLUDE,
         TEXICMD_INDENTBLOCK,          TEXICMD_INDENTBLOCK,
           TEXICMD_INDEX,
         TEXICMD_INSERTCOPYING,          TEXICMD_INSERTCOPYING,
         TEXICMD_ITEM,          TEXICMD_ITEM,
         TEXICMD_ITEMIZE,          TEXICMD_ITEMIZE,
Line 174  enum texicmd {
Line 177  enum texicmd {
         TEXICMD_SUBSUBSECTION,          TEXICMD_SUBSUBSECTION,
         TEXICMD_SUBTITLE,          TEXICMD_SUBTITLE,
         TEXICMD_SUMMARYCONTENTS,          TEXICMD_SUMMARYCONTENTS,
           TEXICMD_SYNINDEX,
         TEXICMD_SYNCODEINDEX,          TEXICMD_SYNCODEINDEX,
         TEXICMD_T,          TEXICMD_T,
         TEXICMD_TAB,          TEXICMD_TAB,
Line 260  struct texi {
Line 264  struct texi {
         char             *title; /* title of document */          char             *title; /* title of document */
         char             *subtitle; /* subtitle of document */          char             *subtitle; /* subtitle of document */
         int               secoffs; /* see sectioner() */          int               secoffs; /* see sectioner() */
         struct texivalue *vals;          char            **indexs; /* @defindex indices */
         size_t            valsz;          size_t            indexsz; /* entries in indexs */
           struct texivalue *vals; /* @value entries */
           size_t            valsz; /* entries in vals */
         /*          /*
          * 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 294  void parseeoln(struct texi *, const char *, size_t, si
Line 300  void parseeoln(struct texi *, const char *, size_t, si
 void    parsesingle(struct texi *, const char *, size_t, size_t *);  void    parsesingle(struct texi *, const char *, size_t, size_t *);
 void    parseto(struct texi *, const char *, size_t, size_t *, const char *);  void    parseto(struct texi *, const char *, size_t, size_t *, const char *);
   
 void    texiabort(struct texi *, const char *);  void    texiabort(struct texi *, const char *)
                   __attribute__((noreturn));
 enum texicmd  enum texicmd
         texicmd(struct texi *, const char *, size_t, size_t, size_t *);          texicmd(struct texi *, const char *, size_t, size_t, size_t *);
 void    texierr(struct texi *, const char *, ...)  void    texierr(struct texi *, const char *, ...)
                 __attribute__((format(printf, 2, 3)));                  __attribute__((format(printf, 2, 3)))
                   __attribute__((noreturn));
 void    texiexit(struct texi *p);  void    texiexit(struct texi *p);
 void    texifilepop(struct texi *);  void    texifilepop(struct texi *);
 void    teximacro(struct texi *, const char *);  void    teximacro(struct texi *, const char *);

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

CVSweb