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

Diff for /mandoc/term.h between version 1.10 and 1.13

version 1.10, 2009/02/25 17:02:47 version 1.13, 2009/03/02 12:09:32
Line 21 
Line 21 
   
 #include "mdoc.h"  #include "mdoc.h"
   
   #define INDENT            6
   
 __BEGIN_DECLS  __BEGIN_DECLS
   
 struct  termp {  struct  termp {
Line 51  struct termpair {
Line 53  struct termpair {
         int               count;          int               count;
 };  };
   
 #define TERMPAIR_SETFLAG(p, fl) \  #define TERMPAIR_SETFLAG(termp, p, fl) \
         do { \          do { \
                 assert(! (TERMPAIR_FLAG & (p)->type)); \                  assert(! (TERMPAIR_FLAG & (p)->type)); \
                   (termp)->flags |= (fl); \
                 (p)->flag = (fl); \                  (p)->flag = (fl); \
                 (p)->type |= TERMPAIR_FLAG; \                  (p)->type |= TERMPAIR_FLAG; \
         } while (0)          } while (0)

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

CVSweb