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

Diff for /mandoc/read.c between version 1.118 and 1.123

version 1.118, 2015/01/26 18:42:30 version 1.123, 2015/02/06 03:38:45
Line 110  static const char * const mandocerrs[MANDOCERR_MAX] = 
Line 110  static const char * const mandocerrs[MANDOCERR_MAX] = 
         "content before first section header",          "content before first section header",
         "first section is not \"NAME\"",          "first section is not \"NAME\"",
         "bad NAME section contents",          "bad NAME section contents",
           "missing description line, using \"\"",
         "sections out of conventional order",          "sections out of conventional order",
         "duplicate section title",          "duplicate section title",
         "unexpected section",          "unexpected section",
Line 141  static const char * const mandocerrs[MANDOCERR_MAX] = 
Line 142  static const char * const mandocerrs[MANDOCERR_MAX] = 
         "list type is not the first argument",          "list type is not the first argument",
         "missing -width in -tag list, using 8n",          "missing -width in -tag list, using 8n",
         "missing utility name, using \"\"",          "missing utility name, using \"\"",
           "missing function name, using \"\"",
         "empty head in list item",          "empty head in list item",
         "empty list item",          "empty list item",
         "missing font type, using \\fR",          "missing font type, using \\fR",
         "unknown font type, using \\fR",          "unknown font type, using \\fR",
         "nothing follows prefix",          "nothing follows prefix",
           "empty reference block",
         "missing -std argument, adding it",          "missing -std argument, adding it",
         "missing eqn box, using \"\"",          "missing eqn box, using \"\"",
   
Line 178  static const char * const mandocerrs[MANDOCERR_MAX] = 
Line 181  static const char * const mandocerrs[MANDOCERR_MAX] = 
   
         "generic error",          "generic error",
   
         /* related to equations */  
         "unexpected equation scope closure",  
         "equation scope open on exit",  
         "overlapping equation scopes",  
         "unexpected end of equation",  
   
         /* related to tables */          /* related to tables */
         "non-alphabetic character in tbl options",          "non-alphabetic character in tbl options",
         "skipping unknown tbl option",          "skipping unknown tbl option",
Line 192  static const char * const mandocerrs[MANDOCERR_MAX] = 
Line 189  static const char * const mandocerrs[MANDOCERR_MAX] = 
         "empty tbl layout",          "empty tbl layout",
         "invalid character in tbl layout",          "invalid character in tbl layout",
         "unmatched parenthesis in tbl layout",          "unmatched parenthesis in tbl layout",
         "no table data cells specified",          "tbl without any data cells",
         "ignore data in cell",          "ignoring data in spanned tbl cell",
         "data block still open",          "ignoring extra tbl data cells",
         "ignoring extra data cells",          "data block open at end of tbl",
   
         /* related to document structure and macros */          /* related to document structure and macros */
         NULL,          NULL,
Line 229  static const char * const mandocerrs[MANDOCERR_MAX] = 
Line 226  static const char * const mandocerrs[MANDOCERR_MAX] = 
         "input too large",          "input too large",
         "unsupported control character",          "unsupported control character",
         "unsupported roff request",          "unsupported roff request",
           "eqn delim option in tbl",
         "unsupported tbl layout modifier",          "unsupported tbl layout modifier",
         "ignoring macro in table",          "ignoring macro in table",
         "eqn in tbl",  
 };  };
   
 static  const char * const      mandoclevels[MANDOCLEVEL_MAX] = {  static  const char * const      mandoclevels[MANDOCLEVEL_MAX] = {

Legend:
Removed from v.1.118  
changed lines
  Added in v.1.123

CVSweb