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

Diff for /mandoc/term.h between version 1.6 and 1.7

version 1.6, 2009/02/25 12:09:20 version 1.7, 2009/02/25 12:27:37
Line 43  struct termp {
Line 43  struct termp {
 struct  termpair {  struct  termpair {
         int               type;          int               type;
 #define TERMPAIR_FLAG    (1 << 0)  #define TERMPAIR_FLAG    (1 << 0)
         union {          int               flag;
                 int       flag;          size_t            offset;
         } data;  
 };  };
   
 #define TERMPAIR_SETFLAG(p, fl) \  #define TERMPAIR_SETFLAG(p, fl) \
         do { \          do { \
                 (p)->data.flag = (fl); \                  assert(! (TERMPAIR_FLAG & (p)->type)); \
                 (p)->type = TERMPAIR_FLAG; \                  (p)->flag = (fl); \
                   (p)->type |= TERMPAIR_FLAG; \
         } while (0)          } while (0)
   
 struct  termact {  struct  termact {

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

CVSweb