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

Diff for /mandoc/term.h between version 1.125 and 1.126

version 1.125, 2017/06/07 17:38:26 version 1.126, 2017/06/07 20:01:19
Line 52  struct termp_tbl {
Line 52  struct termp_tbl {
 struct  termp_col {  struct  termp_col {
         int              *buf;          /* Output buffer. */          int              *buf;          /* Output buffer. */
         size_t            maxcols;      /* Allocated bytes in buf. */          size_t            maxcols;      /* Allocated bytes in buf. */
           size_t            col;          /* Byte in buf to be written. */
         size_t            rmargin;      /* Current right margin. */          size_t            rmargin;      /* Current right margin. */
         size_t            offset;       /* Current left margin. */          size_t            offset;       /* Current left margin. */
 };  };
Line 61  struct termp {
Line 62  struct termp {
         struct termp_col *tcols;        /* Array of table columns. */          struct termp_col *tcols;        /* Array of table columns. */
         struct termp_col *tcol;         /* Current table column. */          struct termp_col *tcol;         /* Current table column. */
         size_t            maxtcol;      /* Allocated table columns. */          size_t            maxtcol;      /* Allocated table columns. */
           size_t            lasttcol;     /* Last column currently used. */
         size_t            line;         /* Current output line number. */          size_t            line;         /* Current output line number. */
         size_t            defindent;    /* Default indent for text. */          size_t            defindent;    /* Default indent for text. */
         size_t            defrmargin;   /* Right margin of the device. */          size_t            defrmargin;   /* Right margin of the device. */
Line 69  struct termp {
Line 71  struct termp {
         size_t            col;          /* Byte position in buf. */          size_t            col;          /* Byte position in buf. */
         size_t            lastcol;      /* Bytes in buf. */          size_t            lastcol;      /* 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 term_flushln(). */
         size_t            minbl;        /* Minimum blanks before next field. */          size_t            minbl;        /* Minimum blanks before next field. */
         int               synopsisonly; /* Print the synopsis only. */          int               synopsisonly; /* Print the synopsis only. */
         int               mdocstyle;    /* Imitate mdoc(7) output. */          int               mdocstyle;    /* Imitate mdoc(7) output. */

Legend:
Removed from v.1.125  
changed lines
  Added in v.1.126

CVSweb