[BACK]Return to term.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/term.h between version 1.65 and 1.66

version 1.65, 2017/05/08 15:33:43 version 1.66, 2017/06/04 18:48:09
Line 67 
Line 67 
         size_t            col;          /* Bytes in buf. */          size_t            col;          /* Bytes in buf. */
         size_t            viscol;       /* Chars on current line. */          size_t            viscol;       /* Chars on current line. */
         size_t            trailspace;   /* See termp_flushln(). */          size_t            trailspace;   /* See termp_flushln(). */
         int               overstep;     /* See termp_flushln(). */          size_t            minbl;        /* Minimum blanks before next field. */
         int               ti;           /* Temporary indent for one line. */          int               ti;           /* Temporary indent for one line. */
         int               skipvsp;      /* Vertical space to skip. */          int               skipvsp;      /* Vertical space to skip. */
         int               flags;          int               flags;
Line 82 
Line 82 
 #define TERMP_NOBREAK    (1 << 8)       /* See term_flushln(). */  #define TERMP_NOBREAK    (1 << 8)       /* See term_flushln(). */
 #define TERMP_BRTRSP     (1 << 9)       /* See term_flushln(). */  #define TERMP_BRTRSP     (1 << 9)       /* See term_flushln(). */
 #define TERMP_BRIND      (1 << 10)      /* See term_flushln(). */  #define TERMP_BRIND      (1 << 10)      /* See term_flushln(). */
 #define TERMP_DANGLE     (1 << 11)      /* See term_flushln(). */  #define TERMP_HANG       (1 << 11)      /* See term_flushln(). */
 #define TERMP_HANG       (1 << 12)      /* See term_flushln(). */  #define TERMP_NOPAD      (1 << 12)      /* See term_flushln(). */
 #define TERMP_NOSPLIT    (1 << 13)      /* Do not break line before .An. */  #define TERMP_NOSPLIT    (1 << 13)      /* Do not break line before .An. */
 #define TERMP_SPLIT      (1 << 14)      /* Break line before .An. */  #define TERMP_SPLIT      (1 << 14)      /* Break line before .An. */
 #define TERMP_NONEWLINE  (1 << 15)      /* No line break in nofill mode. */  #define TERMP_NONEWLINE  (1 << 15)      /* No line break in nofill mode. */

Legend:
Removed from v.1.65  
changed lines
  Added in v.1.66