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

Diff for /mandoc/mandoc.h between version 1.223 and 1.226

version 1.223, 2017/06/06 15:01:04 version 1.226, 2017/06/08 18:11:22
Line 48  enum mandocerr {
Line 48  enum mandocerr {
   
         MANDOCERR_MACRO_USELESS, /* useless macro: macro */          MANDOCERR_MACRO_USELESS, /* useless macro: macro */
         MANDOCERR_BX, /* consider using OS macro: macro */          MANDOCERR_BX, /* consider using OS macro: macro */
           MANDOCERR_ER_ORDER, /* errnos out of order: Er ... */
           MANDOCERR_ER_REP, /* duplicate errno: Er ... */
         MANDOCERR_ND_DOT, /* description line ends with a full stop */          MANDOCERR_ND_DOT, /* description line ends with a full stop */
   
         MANDOCERR_WARNING, /* ===== start of warnings ===== */          MANDOCERR_WARNING, /* ===== start of warnings ===== */
Line 133  enum mandocerr {
Line 135  enum mandocerr {
         MANDOCERR_AT_BAD, /* unknown AT&T UNIX version: At version */          MANDOCERR_AT_BAD, /* unknown AT&T UNIX version: At version */
         MANDOCERR_FA_COMMA, /* comma in function argument: arg */          MANDOCERR_FA_COMMA, /* comma in function argument: arg */
         MANDOCERR_FN_PAREN, /* parenthesis in function name: arg */          MANDOCERR_FN_PAREN, /* parenthesis in function name: arg */
           MANDOCERR_LB_BAD, /* unknown library name: Lb ... */
         MANDOCERR_RS_BAD, /* invalid content in Rs block: macro */          MANDOCERR_RS_BAD, /* invalid content in Rs block: macro */
         MANDOCERR_SM_BAD, /* invalid Boolean argument: macro arg */          MANDOCERR_SM_BAD, /* invalid Boolean argument: macro arg */
         MANDOCERR_FT_BAD, /* unknown font, skipping request: ft font */          MANDOCERR_FT_BAD, /* unknown font, skipping request: ft font */
Line 243  enum tbl_cellt {
Line 246  enum tbl_cellt {
  */   */
 struct  tbl_cell {  struct  tbl_cell {
         struct tbl_cell  *next;          struct tbl_cell  *next;
           char             *wstr; /* min width represented as a string */
           size_t            width; /* minimum column width */
           size_t            spacing; /* to the right of the column */
         int               vert; /* width of subsequent vertical line */          int               vert; /* width of subsequent vertical line */
         enum tbl_cellt    pos;  
         size_t            spacing;  
         int               col; /* column number, starting from 0 */          int               col; /* column number, starting from 0 */
         int               flags;          int               flags;
 #define TBL_CELL_TALIGN  (1 << 0) /* t, T */  #define TBL_CELL_TALIGN  (1 << 0) /* t, T */
Line 256  struct tbl_cell {
Line 260  struct tbl_cell {
 #define TBL_CELL_UP      (1 << 5) /* u, U */  #define TBL_CELL_UP      (1 << 5) /* u, U */
 #define TBL_CELL_WIGN    (1 << 6) /* z, Z */  #define TBL_CELL_WIGN    (1 << 6) /* z, Z */
 #define TBL_CELL_WMAX    (1 << 7) /* x, X */  #define TBL_CELL_WMAX    (1 << 7) /* x, X */
           enum tbl_cellt    pos;
 };  };
   
 /*  /*
Line 283  enum tbl_datt {
Line 288  enum tbl_datt {
  */   */
 struct  tbl_dat {  struct  tbl_dat {
         struct tbl_cell  *layout; /* layout cell */          struct tbl_cell  *layout; /* layout cell */
         int               spans; /* how many spans follow */  
         struct tbl_dat   *next;          struct tbl_dat   *next;
         char             *string; /* data (NULL if not TBL_DATA_DATA) */          char             *string; /* data (NULL if not TBL_DATA_DATA) */
           int               spans; /* how many spans follow */
           int               block; /* T{ text block T} */
         enum tbl_datt     pos;          enum tbl_datt     pos;
 };  };
   

Legend:
Removed from v.1.223  
changed lines
  Added in v.1.226

CVSweb