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

Diff for /mandoc/libmdoc.h between version 1.7 and 1.13

version 1.7, 2009/06/10 20:18:43 version 1.13, 2009/07/06 13:04:52
Line 29  struct mdoc {
Line 29  struct mdoc {
         struct mdoc_cb    cb;          struct mdoc_cb    cb;
         void             *htab;          void             *htab;
         int               flags;          int               flags;
 #define MDOC_HALT        (1 << 0)  #define MDOC_HALT        (1 << 0)       /* Error in parse. Halt. */
 #define MDOC_LITERAL     (1 << 1)  #define MDOC_LITERAL     (1 << 1)       /* In a literal scope. */
   #define MDOC_PBODY       (1 << 2)       /* In the document body. */
         int               pflags;          int               pflags;
         enum mdoc_next    next;          enum mdoc_next    next;
         struct mdoc_node *last;          struct mdoc_node *last;
Line 40  struct mdoc {
Line 41  struct mdoc {
         enum mdoc_sec     lastsec;          enum mdoc_sec     lastsec;
 };  };
   
   enum    merr {
           ETAILWS,
           ECOLEMPTY,
           EARGVPARM,
           EQUOTPARM,
           EQUOTTERM,
           EMALLOC,
           EARGVAL,
           ENOCALL,
           EBODYPROL,
           EPROLBODY,
           ESPACE,
           ETEXTPROL,
           ENOBLANK,
           ETOOLONG,
           EESCAPE,
           EPRINT,
           ENODAT,
           ENOPROLOGUE,
           ELINE,
           EATT,
           ENAME,
           ELISTTYPE,
           EDISPTYPE,
           EMULTIDISP,
           ESECNAME,
           EMULTILIST,
           EARGREP,
           EBOOL,
           ECOLMIS,
           ENESTDISP,
           EMISSWIDTH,
           EWRONGMSEC,
           ESECOOO,
           ESECREP,
           EBADSTAND,
           ENAMESECINC,
           ENOMULTILINE,
           EMULTILINE,
           ENOLINE,
           EPROLOOO,
           EPROLREP,
           EBADMSEC,
           EFONT,
           EBADDATE,
           ENOWIDTH,
           EBADSEC,
           EUTSNAME,
           ENUMFMT,
           EOBS,
           EMACPARM,
           EIMPBRK,
           EIGNE,
           EOPEN,
           EQUOT,
           ENOCTX,
           ENOPARMS
   };
   
 #define MACRO_PROT_ARGS struct mdoc *mdoc, int tok, int line, \  #define MACRO_PROT_ARGS struct mdoc *mdoc, int tok, int line, \
                         int ppos, int *pos, char *buf                          int ppos, int *pos, char *buf
Line 55  struct mdoc_macro {
Line 114  struct mdoc_macro {
         /* Reserved words in arguments treated as text. */          /* Reserved words in arguments treated as text. */
 };  };
   
 #define mdoc_nwarn(mdoc, node, type, fmt, ...) \  
                   mdoc_vwarn((mdoc), (node)->line, \  
                   (node)->pos, (type), (fmt), ##__VA_ARGS__)  
   
 #define mdoc_nerr(mdoc, node, fmt, ...) \  
                   mdoc_verr((mdoc), (node)->line, \  
                   (node)->pos, (fmt), ##__VA_ARGS__)  
   
 #define mdoc_warn(mdoc, type, fmt, ...) \  
                   mdoc_vwarn((mdoc), (mdoc)->last->line, \  
                   (mdoc)->last->pos, (type), (fmt), ##__VA_ARGS__)  
   
 #define mdoc_err(mdoc, fmt, ...) \  
                   mdoc_verr((mdoc), (mdoc)->last->line, \  
                   (mdoc)->last->pos, (fmt), ##__VA_ARGS__)  
   
 #define mdoc_msg(mdoc, fmt, ...) \  
                   mdoc_vmsg((mdoc), (mdoc)->last->line, \  
                   (mdoc)->last->pos, (fmt), ##__VA_ARGS__)  
   
 #define mdoc_pmsg(mdoc, line, pos, fmt, ...) \  
                   mdoc_vmsg((mdoc), (line), \  
                   (pos), (fmt), ##__VA_ARGS__)  
   
 #define mdoc_pwarn(mdoc, line, pos, type, fmt, ...) \  
                   mdoc_vwarn((mdoc), (line), \  
                   (pos), (type), (fmt), ##__VA_ARGS__)  
   
 #define mdoc_perr(mdoc, line, pos, fmt, ...) \  
                   mdoc_verr((mdoc), (line), \  
                   (pos), (fmt), ##__VA_ARGS__)  
   
 extern  const struct mdoc_macro *const mdoc_macros;  extern  const struct mdoc_macro *const mdoc_macros;
   
 __BEGIN_DECLS  __BEGIN_DECLS
   
 int               mdoc_vwarn(struct mdoc *, int, int,  #define           mdoc_perr(m, l, p, t) \
                         enum mdoc_warn, const char *, ...);                    mdoc_err((m), (l), (p), 1, (t))
 void              mdoc_vmsg(struct mdoc *, int, int,  #define           mdoc_pwarn(m, l, p, t) \
                         const char *, ...);                    mdoc_err((m), (l), (p), 0, (t))
 int               mdoc_verr(struct mdoc *, int, int,  #define           mdoc_nerr(m, n, t) \
                         const char *, ...);                    mdoc_err((m), (n)->line, (n)->pos, 0, (t))
   #define           mdoc_nwarn(m, n, t) \
                     mdoc_err((m), (n)->line, (n)->pos, 1, (t))
   
   int               mdoc_err(struct mdoc *, int, int, int, enum merr);
   int               mdoc_verr(struct mdoc *, int, int, const char *, ...);
   int               mdoc_vwarn(struct mdoc *, int, int, const char *, ...);
   
 int               mdoc_macro(MACRO_PROT_ARGS);  int               mdoc_macro(MACRO_PROT_ARGS);
 int               mdoc_word_alloc(struct mdoc *,  int               mdoc_word_alloc(struct mdoc *,
                         int, int, const char *);                          int, int, const char *);

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.13

CVSweb