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

Diff for /mandoc/mandoc.h between version 1.135 and 1.137

version 1.135, 2014/07/05 01:12:20 version 1.137, 2014/07/06 19:09:00
Line 91  enum mandocerr {
Line 91  enum mandocerr {
         MANDOCERR_ARGCWARN, /* argument count wrong */          MANDOCERR_ARGCWARN, /* argument count wrong */
         MANDOCERR_BD_NOTYPE, /* missing display type, using -ragged */          MANDOCERR_BD_NOTYPE, /* missing display type, using -ragged */
         MANDOCERR_BL_LATETYPE, /* list type is not the first argument: arg */          MANDOCERR_BL_LATETYPE, /* list type is not the first argument: arg */
         MANDOCERR_BL_WIDTH, /* missing -width in -tag list, using 8n */          MANDOCERR_BL_NOWIDTH, /* missing -width in -tag list, using 8n */
         MANDOCERR_IT_NOHEAD, /* empty head in list item: type */          MANDOCERR_IT_NOHEAD, /* empty head in list item: type */
         MANDOCERR_IT_NOBODY, /* empty list item: type */          MANDOCERR_IT_NOBODY, /* empty list item: type */
         MANDOCERR_BF_NOFONT, /* missing font type, using \fR */          MANDOCERR_BF_NOFONT, /* missing font type, using \fR */
         MANDOCERR_BF_BADFONT, /* unknown font type, using \fR: Bf font */          MANDOCERR_BF_BADFONT, /* unknown font type, using \fR: macro font */
         MANDOCERR_ARG_STD, /* missing -std argument, adding it: macro */          MANDOCERR_ARG_STD, /* missing -std argument, adding it: macro */
   
         /* related to bad macro arguments */          /* related to bad arguments */
         MANDOCERR_IGNARGV, /* skipping argument */          MANDOCERR_IGNARGV, /* skipping argument */
           MANDOCERR_ARG_QUOTE, /* unterminated quoted argument */
         MANDOCERR_ARG_REP, /* duplicate argument: macro arg */          MANDOCERR_ARG_REP, /* duplicate argument: macro arg */
         MANDOCERR_DISPREP, /* duplicate display type */          MANDOCERR_BD_REP, /* skipping duplicate display type: type */
         MANDOCERR_LISTREP, /* duplicate list type */          MANDOCERR_BL_REP, /* skipping duplicate list type: type */
         MANDOCERR_BADATT, /* unknown AT&T UNIX version */          MANDOCERR_AT_BAD, /* unknown AT&T UNIX version: version */
         MANDOCERR_BADBOOL, /* bad Boolean value */          MANDOCERR_SM_BAD, /* invalid Boolean argument: macro arg */
         MANDOCERR_BADFONT, /* unknown font */          MANDOCERR_FT_BAD, /* unknown font, skipping request: request font */
         MANDOCERR_BADSTANDARD, /* unknown standard specifier */  
         MANDOCERR_BADWIDTH, /* bad width argument */  
   
         /* related to plain text */          /* related to plain text */
         MANDOCERR_NOBLANKLN, /* blank line in non-literal context */          MANDOCERR_FI_BLANK, /* blank line in fill mode, using .sp */
         MANDOCERR_BADTAB, /* tab in non-literal context */          MANDOCERR_FI_TAB, /* tab in filled text */
         MANDOCERR_EOLNSPACE, /* end of line whitespace */          MANDOCERR_SPACE_EOL, /* whitespace at end of input line */
         MANDOCERR_BADCOMMENT, /* bad comment style */          MANDOCERR_COMMENT_BAD, /* bad comment style */
         MANDOCERR_BADESCAPE, /* bad escape sequence */          MANDOCERR_ESC_BAD, /* invalid escape sequence: esc */
         MANDOCERR_BADQUOTE, /* unterminated quoted string */          MANDOCERR_STR_UNDEF, /* undefined string, using "": name */
   
         MANDOCERR_ERROR, /* ===== start of errors ===== */          MANDOCERR_ERROR, /* ===== start of errors ===== */
   
Line 145  enum mandocerr {
Line 144  enum mandocerr {
         MANDOCERR_REQUEST, /* NOT IMPLEMENTED: skipping request */          MANDOCERR_REQUEST, /* NOT IMPLEMENTED: skipping request */
         MANDOCERR_ARGCOUNT, /* argument count wrong */          MANDOCERR_ARGCOUNT, /* argument count wrong */
         MANDOCERR_RS_SKIP, /* skipping invalid content in .Rs block: macro */          MANDOCERR_RS_SKIP, /* skipping invalid content in .Rs block: macro */
           MANDOCERR_ST_BAD, /* unknown standard specifier: standard */
         MANDOCERR_STRAYTA, /* skipping column outside column list */          MANDOCERR_STRAYTA, /* skipping column outside column list */
         MANDOCERR_NOSCOPE, /* skipping end of block that is not open */          MANDOCERR_NOSCOPE, /* skipping end of block that is not open */
         MANDOCERR_SCOPEBROKEN, /* missing end of block */          MANDOCERR_SCOPEBROKEN, /* missing end of block */

Legend:
Removed from v.1.135  
changed lines
  Added in v.1.137

CVSweb