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

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

version 1.117, 2015/01/26 13:03:48 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 171  static const char * const mandocerrs[MANDOCERR_MAX] = 
Line 174  static const char * const mandocerrs[MANDOCERR_MAX] = 
         "invalid escape sequence",          "invalid escape sequence",
         "undefined string, using \"\"",          "undefined string, using \"\"",
   
           /* related to tables */
           "tbl line starts with span",
           "tbl column starts with span",
           "skipping vertical bar in tbl layout",
   
         "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",
         "missing tbl option argument",          "missing tbl option argument",
         "wrong tbl option argument size",          "wrong tbl option argument size",
         "no table layout cells specified",          "empty tbl layout",
         "no table data cells specified",          "invalid character in tbl layout",
         "ignore data in cell",          "unmatched parenthesis in tbl layout",
         "data block still open",          "tbl without any data cells",
         "ignoring extra data cells",          "ignoring data in spanned tbl cell",
           "ignoring extra tbl data cells",
           "data block open at end of tbl",
   
         /* related to document structure and macros */          /* related to document structure and macros */
         NULL,          NULL,
Line 222  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",
         "unsupported table layout",          "eqn delim option in tbl",
           "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.117  
changed lines
  Added in v.1.123

CVSweb