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

Diff for /mandoc/html.h between version 1.76 and 1.77

version 1.76, 2017/01/18 19:22:22 version 1.77, 2017/01/19 01:00:14
Line 95  struct html {
Line 95  struct html {
 #define HTML_NOSPLIT     (1 << 7) /* do not break line before .An */  #define HTML_NOSPLIT     (1 << 7) /* do not break line before .An */
 #define HTML_SPLIT       (1 << 8) /* break line before .An */  #define HTML_SPLIT       (1 << 8) /* break line before .An */
 #define HTML_NONEWLINE   (1 << 9) /* No line break in nofill mode. */  #define HTML_NONEWLINE   (1 << 9) /* No line break in nofill mode. */
 #define HTML_NLDONE      (1 << 10) /* Just started a new line of HTML. */  #define HTML_BUFFER      (1 << 10) /* Collect a word to see if it fits. */
         int               indent; /* current output indentation level */          size_t            indent; /* current output indentation level */
         int               noindent; /* indent disabled by <pre> */          int               noindent; /* indent disabled by <pre> */
           size_t            col; /* current output byte position */
           size_t            bufcol; /* current buf byte position */
           char              buf[80]; /* output buffer */
         struct tagq       tags; /* stack of open tags */          struct tagq       tags; /* stack of open tags */
         struct rofftbl    tbl; /* current table */          struct rofftbl    tbl; /* current table */
         struct tag       *tblt; /* current open table scope */          struct tag       *tblt; /* current open table scope */

Legend:
Removed from v.1.76  
changed lines
  Added in v.1.77

CVSweb