=================================================================== RCS file: /cvs/mandoc/Attic/mdocml.c,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -r1.27 -r1.28 --- mandoc/Attic/mdocml.c 2008/12/28 23:07:04 1.27 +++ mandoc/Attic/mdocml.c 2008/12/29 18:08:44 1.28 @@ -1,4 +1,4 @@ -/* $Id: mdocml.c,v 1.27 2008/12/28 23:07:04 kristaps Exp $ */ +/* $Id: mdocml.c,v 1.28 2008/12/29 18:08:44 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -339,6 +339,9 @@ msg_err(void *arg, int tok, int col, enum mdoc_err typ case (ERR_SYNTAX_ARGFORM): fmt = "syntax: macro `%s' arguments malformed"; break; + case (ERR_SYNTAX_NOPUNCT): + fmt = "syntax: macro `%s' doesn't understand punctuation"; + break; case (ERR_SYNTAX_ARG): fmt = "syntax: unknown argument for macro `%s'"; break; @@ -364,8 +367,14 @@ msg_err(void *arg, int tok, int col, enum mdoc_err typ case (ERR_SEC_NPROLOGUE): fmt = "macro `%s' called outside of prologue"; break; + case (ERR_ARGS_EQ0): + fmt = "macro `%s' expects zero arguments"; + break; case (ERR_ARGS_GE1): fmt = "macro `%s' expects one or more arguments"; + break; + case (ERR_ARGS_LE2): + fmt = "macro `%s' expects two or fewer arguments"; break; case (ERR_ARGS_MANY): fmt = "macro `%s' has too many arguments";