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

Diff for /mandoc/main.c between version 1.22 and 1.23

version 1.22, 2009/04/03 11:08:39 version 1.23, 2009/04/03 12:27:18
Line 71  struct curparse {
Line 71  struct curparse {
 #define WARN_WCOMPAT     (1 << 0)       /* Compatibility warnings. */  #define WARN_WCOMPAT     (1 << 0)       /* Compatibility warnings. */
 #define WARN_WSYNTAX     (1 << 1)       /* Syntax warnings. */  #define WARN_WSYNTAX     (1 << 1)       /* Syntax warnings. */
 #define WARN_WERR        (1 << 2)       /* Warnings->errors. */  #define WARN_WERR        (1 << 2)       /* Warnings->errors. */
         int               fflags;       /* Per-intt flags. */          int               fflags;
   #define IGN_SCOPE        (1 << 0)       /* Ignore scope errors. */
   #define IGN_ESCAPE       (1 << 1)       /* Ignore bad escapes. */
   #define IGN_MACRO        (1 << 2)       /* Ignore unknown macros. */
   #define NO_IGN_MACRO     (1 << 3)
         enum intt         inttype;      /* Input parsers. */          enum intt         inttype;      /* Input parsers. */
         struct man       *man;          struct man       *man;
         struct man       *lastman;          struct man       *lastman;
Line 83  struct curparse {
Line 87  struct curparse {
         out_free          outfree;          out_free          outfree;
         void             *outdata;          void             *outdata;
 };  };
   
 #define IGN_SCOPE        (1 << 0)       /* Ignore scope errors. */  
 #define IGN_ESCAPE       (1 << 1)       /* Ignore bad escapes. */  
 #define IGN_MACRO        (1 << 2)       /* Ignore unknown macros. */  
 #define NO_IGN_MACRO     (1 << 3)  
   
 extern  void             *ascii_alloc(void);  extern  void             *ascii_alloc(void);
 extern  int               tree_mdoc(void *, const struct mdoc *);  extern  int               tree_mdoc(void *, const struct mdoc *);

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

CVSweb