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

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

version 1.188, 2017/07/04 14:40:38 version 1.189, 2017/07/06 22:59:48
Line 98  static const char * const mandocerrs[MANDOCERR_MAX] = 
Line 98  static const char * const mandocerrs[MANDOCERR_MAX] = 
         "generic style suggestion",          "generic style suggestion",
   
         "legacy man(7) date format",          "legacy man(7) date format",
           "lower case character in document title",
         "duplicate RCS id",          "duplicate RCS id",
         "typo in section name",          "typo in section name",
           "unterminated quoted argument",
         "useless macro",          "useless macro",
         "consider using OS macro",          "consider using OS macro",
         "errnos out of order",          "errnos out of order",
         "duplicate errno",          "duplicate errno",
         "trailing delimiter",          "trailing delimiter",
         "no blank before trailing delimiter",          "no blank before trailing delimiter",
           "fill mode already enabled, skipping",
           "fill mode already disabled, skipping",
         "function name without markup",          "function name without markup",
           "whitespace at end of input line",
           "bad comment style",
   
         "generic warning",          "generic warning",
   
         /* related to the prologue */          /* related to the prologue */
         "missing manual title, using UNTITLED",          "missing manual title, using UNTITLED",
         "missing manual title, using \"\"",          "missing manual title, using \"\"",
         "lower case character in document title",  
         "missing manual section, using \"\"",          "missing manual section, using \"\"",
         "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",          "date in the future, using it anyway",
         "missing Os macro, using \"\"",          "missing Os macro, using \"\"",
         "duplicate prologue macro",  
         "late prologue macro",          "late prologue macro",
         "skipping late title macro",  
         "prologue macros out of order",          "prologue macros out of order",
   
         /* related to document structure */          /* related to document structure */
Line 155  static const char * const mandocerrs[MANDOCERR_MAX] = 
Line 158  static const char * const mandocerrs[MANDOCERR_MAX] = 
         "nested displays are not portable",          "nested displays are not portable",
         "moving content out of list",          "moving content out of list",
         "first macro on line",          "first macro on line",
         "fill mode already enabled, skipping",  
         "fill mode already disabled, skipping",  
         "line scope broken",          "line scope broken",
         "skipping blank line in line scope",          "skipping blank line in line scope",
   
Line 185  static const char * const mandocerrs[MANDOCERR_MAX] = 
Line 186  static const char * const mandocerrs[MANDOCERR_MAX] = 
         "missing eqn box, using \"\"",          "missing eqn box, using \"\"",
   
         /* related to bad macro arguments */          /* related to bad macro arguments */
         "unterminated quoted argument",  
         "duplicate argument",          "duplicate argument",
         "skipping duplicate argument",          "skipping duplicate argument",
         "skipping duplicate display type",          "skipping duplicate display type",
Line 204  static const char * const mandocerrs[MANDOCERR_MAX] = 
Line 204  static const char * const mandocerrs[MANDOCERR_MAX] = 
         /* related to plain text */          /* related to plain text */
         "blank line in fill mode, using .sp",          "blank line in fill mode, using .sp",
         "tab in filled text",          "tab in filled text",
         "whitespace at end of input line",  
         "new sentence, new line",          "new sentence, new line",
         "bad comment style",  
         "invalid escape sequence",          "invalid escape sequence",
         "undefined string, using \"\"",          "undefined string, using \"\"",
   
Line 232  static const char * const mandocerrs[MANDOCERR_MAX] = 
Line 230  static const char * const mandocerrs[MANDOCERR_MAX] = 
   
         /* related to document structure and macros */          /* related to document structure and macros */
         NULL,          NULL,
           "duplicate prologue macro",
           "skipping late title macro",
         "input stack limit exceeded, infinite loop?",          "input stack limit exceeded, infinite loop?",
         "skipping bad character",          "skipping bad character",
         "skipping unknown macro",          "skipping unknown macro",

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

CVSweb