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

Diff for /mandoc/read.c between version 1.180 and 1.188

version 1.180, 2017/06/24 15:59:50 version 1.188, 2017/07/04 14:40:38
Line 75  static void   mparse_parse_buffer(struct mparse *, str
Line 75  static void   mparse_parse_buffer(struct mparse *, str
   
 static  const enum mandocerr    mandoclimits[MANDOCLEVEL_MAX] = {  static  const enum mandocerr    mandoclimits[MANDOCLEVEL_MAX] = {
         MANDOCERR_OK,          MANDOCERR_OK,
         MANDOCERR_STYLE,          MANDOCERR_OK,
         MANDOCERR_WARNING,          MANDOCERR_WARNING,
         MANDOCERR_ERROR,          MANDOCERR_ERROR,
         MANDOCERR_UNSUPP,          MANDOCERR_UNSUPP,
Line 90  static const char * const mandocerrs[MANDOCERR_MAX] = 
Line 90  static const char * const mandocerrs[MANDOCERR_MAX] = 
   
         "Mdocdate found",          "Mdocdate found",
         "Mdocdate missing",          "Mdocdate missing",
           "unknown architecture",
         "operating system explicitly specified",          "operating system explicitly specified",
         "RCS id missing",          "RCS id missing",
           "referenced manual not found",
   
         "generic style suggestion",          "generic style suggestion",
   
         "legacy man(7) date format",          "legacy man(7) date format",
         "duplicate RCS id",          "duplicate RCS id",
           "typo in section name",
         "useless macro",          "useless macro",
         "consider using OS macro",          "consider using OS macro",
         "errnos out of order",          "errnos out of order",
         "duplicate errno",          "duplicate errno",
         "description line ends with a full stop",          "trailing delimiter",
         "no blank before trailing delimiter",          "no blank before trailing delimiter",
         "function name without markup",          "function name without markup",
   
Line 115  static const char * const mandocerrs[MANDOCERR_MAX] = 
Line 118  static const char * const mandocerrs[MANDOCERR_MAX] = 
         "unknown manual section",          "unknown manual section",
         "missing date, using today's date",          "missing date, using today's date",
         "cannot parse date, using it verbatim",          "cannot parse date, using it verbatim",
           "date in the future, using it anyway",
         "missing Os macro, using \"\"",          "missing Os macro, using \"\"",
         "duplicate prologue macro",          "duplicate prologue macro",
         "late prologue macro",          "late prologue macro",
Line 136  static const char * const mandocerrs[MANDOCERR_MAX] = 
Line 140  static const char * const mandocerrs[MANDOCERR_MAX] = 
         "sections out of conventional order",          "sections out of conventional order",
         "duplicate section title",          "duplicate section title",
         "unexpected section",          "unexpected section",
           "cross reference to self",
         "unusual Xr order",          "unusual Xr order",
         "unusual Xr punctuation",          "unusual Xr punctuation",
         "AUTHORS section without An macro",          "AUTHORS section without An macro",
Line 149  static const char * const mandocerrs[MANDOCERR_MAX] = 
Line 154  static const char * const mandocerrs[MANDOCERR_MAX] = 
         "blocks badly nested",          "blocks badly nested",
         "nested displays are not portable",          "nested displays are not portable",
         "moving content out of list",          "moving content out of list",
           "first macro on line",
         "fill mode already enabled, skipping",          "fill mode already enabled, skipping",
         "fill mode already disabled, skipping",          "fill mode already disabled, skipping",
         "line scope broken",          "line scope broken",
Line 167  static const char * const mandocerrs[MANDOCERR_MAX] = 
Line 173  static const char * const mandocerrs[MANDOCERR_MAX] = 
         "missing function name, using \"\"",          "missing function name, using \"\"",
         "empty head in list item",          "empty head in list item",
         "empty list item",          "empty list item",
           "missing argument, using next line",
         "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",

Legend:
Removed from v.1.180  
changed lines
  Added in v.1.188

CVSweb