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

Diff for /mandoc/term.h between version 1.53 and 1.56

version 1.53, 2010/05/10 08:05:17 version 1.56, 2010/05/24 21:34:16
Line 32  enum termfont {
Line 32  enum termfont {
 #define TERM_MAXMARGIN    100000 /* FIXME */  #define TERM_MAXMARGIN    100000 /* FIXME */
   
 struct  termp {  struct  termp {
           size_t            defrmargin;   /* Right margin of the device.. */
         size_t            rmargin;      /* Current right margin. */          size_t            rmargin;      /* Current right margin. */
         size_t            maxrmargin;   /* Max right margin. */          size_t            maxrmargin;   /* Max right margin. */
         size_t            maxcols;      /* Max size of buf. */          size_t            maxcols;      /* Max size of buf. */
         size_t            offset;       /* Margin offest. */          size_t            offset;       /* Margin offest. */
           size_t            tabwidth;     /* Distance of tab positions. */
         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.53  
changed lines
  Added in v.1.56

CVSweb