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

Diff for /mandoc/term.h between version 1.52 and 1.54

version 1.52, 2010/03/23 12:42:22 version 1.54, 2010/05/12 16:01:01
Line 29  enum termfont {
Line 29  enum termfont {
         TERMFONT_UNDER          TERMFONT_UNDER
 };  };
   
   #define TERM_MAXMARGIN    100000 /* FIXME */
   
 struct  termp {  struct  termp {
         size_t            rmargin;      /* Current right margin. */          size_t            rmargin;      /* Current right margin. */
         size_t            maxrmargin;   /* Max right margin. */          size_t            maxrmargin;   /* Max right margin. */
Line 37  struct termp {
Line 39  struct termp {
         size_t            col;          /* Bytes in buf. */          size_t            col;          /* Bytes in buf. */
         int               overstep;     /* See termp_flushln(). */          int               overstep;     /* See termp_flushln(). */
         int               flags;          int               flags;
   #define TERMP_SENTENCE   (1 << 1)       /* Space before a sentence. */
 #define TERMP_NOSPACE    (1 << 2)       /* No space before words. */  #define TERMP_NOSPACE    (1 << 2)       /* No space before words. */
 #define TERMP_NOLPAD     (1 << 3)       /* See term_flushln(). */  #define TERMP_NOLPAD     (1 << 3)       /* See term_flushln(). */
 #define TERMP_NOBREAK    (1 << 4)       /* See term_flushln(). */  #define TERMP_NOBREAK    (1 << 4)       /* See term_flushln(). */

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.54

CVSweb