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

Diff for /mandoc/Attic/mdocml.c between version 1.28 and 1.30

version 1.28, 2008/12/29 18:08:44 version 1.30, 2008/12/30 19:06:03
Line 370  msg_err(void *arg, int tok, int col, enum mdoc_err typ
Line 370  msg_err(void *arg, int tok, int col, enum mdoc_err typ
         case (ERR_ARGS_EQ0):          case (ERR_ARGS_EQ0):
                 fmt = "macro `%s' expects zero arguments";                  fmt = "macro `%s' expects zero arguments";
                 break;                  break;
           case (ERR_ARGS_EQ1):
                   fmt = "macro `%s' expects one argument";
                   break;
         case (ERR_ARGS_GE1):          case (ERR_ARGS_GE1):
                 fmt = "macro `%s' expects one or more arguments";                  fmt = "macro `%s' expects one or more arguments";
                 break;                  break;
Line 496  msg_warn(void *arg, int tok, int col, enum mdoc_warn t
Line 499  msg_warn(void *arg, int tok, int col, enum mdoc_warn t
                 break;                  break;
         case (WARN_IGN_AFTER_BLK):          case (WARN_IGN_AFTER_BLK):
                 fmt = "ignore: macro `%s' ignored after block macro";                  fmt = "ignore: macro `%s' ignored after block macro";
                   break;
           case (WARN_IGN_OBSOLETE):
                   fmt = "ignore: macro `%s' is obsolete";
                 break;                  break;
         case (WARN_IGN_BEFORE_BLK):          case (WARN_IGN_BEFORE_BLK):
                 fmt = "ignore: macro before block macro `%s' ignored";                  fmt = "ignore: macro before block macro `%s' ignored";

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.30

CVSweb