[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.11

version 1.6, 2009/02/25 12:09:20 version 1.11, 2009/02/25 23:18:50
Line 37  struct termp {
Line 37  struct termp {
 #define TERMP_NOBREAK    (1 << 4)       /* No break after flush. */  #define TERMP_NOBREAK    (1 << 4)       /* No break after flush. */
 #define TERMP_LITERAL    (1 << 5)       /* Literal words. */  #define TERMP_LITERAL    (1 << 5)       /* Literal words. */
 #define TERMP_IGNDELIM   (1 << 6)       /* Delims like regulars. */  #define TERMP_IGNDELIM   (1 << 6)       /* Delims like regulars. */
   #define TERMP_NONOSPACE  (1 << 7)       /* No space (no autounset). */
   #define TERMP_NORPAD     (1 << 8)       /* No rightpad. */
         char             *buf;          char             *buf;
 };  };
   
 struct  termpair {  struct  termpair {
           struct termpair  *ppair;
         int               type;          int               type;
 #define TERMPAIR_FLAG    (1 << 0)  #define TERMPAIR_FLAG    (1 << 0)
         union {          int               flag;
                 int       flag;          size_t            offset;
         } data;          size_t            rmargin;
           int               count;
 };  };
   
 #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.11

CVSweb