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

Diff for /mandoc/mandoc.h between version 1.185 and 1.187

version 1.185, 2015/01/22 21:38:16 version 1.187, 2015/01/26 00:57:22
Line 136  enum mandocerr {
Line 136  enum mandocerr {
         MANDOCERR_EQNEOF, /* unexpected end of equation */          MANDOCERR_EQNEOF, /* unexpected end of equation */
   
         /* related to tables */          /* related to tables */
           MANDOCERR_TBLOPT_ALPHA, /* non-alphabetic character in tbl options */
           MANDOCERR_TBLOPT_BAD, /* skipping unknown tbl option: option */
           MANDOCERR_TBLOPT_NOARG, /* missing tbl option argument */
           MANDOCERR_TBLOPT_ARGSZ, /* wrong tbl option argument size */
         MANDOCERR_TBLNOLAYOUT, /* no table layout cells specified */          MANDOCERR_TBLNOLAYOUT, /* no table layout cells specified */
         MANDOCERR_TBLNODATA, /* no table data cells specified */          MANDOCERR_TBLNODATA, /* no table data cells specified */
         MANDOCERR_TBLIGNDATA, /* ignore data in cell */          MANDOCERR_TBLIGNDATA, /* ignore data in cell */
Line 151  enum mandocerr {
Line 155  enum mandocerr {
         MANDOCERR_IT_STRAY, /* skipping item outside list: It ... */          MANDOCERR_IT_STRAY, /* skipping item outside list: It ... */
         MANDOCERR_TA_STRAY, /* skipping column outside column list: Ta */          MANDOCERR_TA_STRAY, /* skipping column outside column list: Ta */
         MANDOCERR_BLK_NOTOPEN, /* skipping end of block that is not open */          MANDOCERR_BLK_NOTOPEN, /* skipping end of block that is not open */
           MANDOCERR_RE_NOTOPEN, /* fewer RS blocks open, skipping: RE arg */
         MANDOCERR_BLK_BROKEN, /* inserting missing end of block: macro ... */          MANDOCERR_BLK_BROKEN, /* inserting missing end of block: macro ... */
         MANDOCERR_BLK_NOEND, /* appending missing end of block: macro */          MANDOCERR_BLK_NOEND, /* appending missing end of block: macro */
   
Line 174  enum mandocerr {
Line 179  enum mandocerr {
         MANDOCERR_TOOLARGE, /* input too large */          MANDOCERR_TOOLARGE, /* input too large */
         MANDOCERR_CHAR_UNSUPP, /* unsupported control character: number */          MANDOCERR_CHAR_UNSUPP, /* unsupported control character: number */
         MANDOCERR_REQ_UNSUPP, /* unsupported roff request: request */          MANDOCERR_REQ_UNSUPP, /* unsupported roff request: request */
         MANDOCERR_TBL, /* unsupported table syntax */  
         MANDOCERR_TBLOPT, /* unsupported table option */  
         MANDOCERR_TBLLAYOUT, /* unsupported table layout */          MANDOCERR_TBLLAYOUT, /* unsupported table layout */
         MANDOCERR_TBLMACRO, /* ignoring macro in table: macro */          MANDOCERR_TBLMACRO, /* ignoring macro in table: macro */
   
Line 185  enum mandocerr {
Line 188  enum mandocerr {
 struct  tbl_opts {  struct  tbl_opts {
         char              tab; /* cell-separator */          char              tab; /* cell-separator */
         char              decimal; /* decimal point */          char              decimal; /* decimal point */
         int               linesize;  
         int               opts;          int               opts;
 #define TBL_OPT_CENTRE   (1 << 0)  #define TBL_OPT_CENTRE   (1 << 0)
 #define TBL_OPT_EXPAND   (1 << 1)  #define TBL_OPT_EXPAND   (1 << 1)

Legend:
Removed from v.1.185  
changed lines
  Added in v.1.187

CVSweb