=================================================================== RCS file: /cvs/mandoc/Attic/mdocml.c,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -r1.31 -r1.32 --- mandoc/Attic/mdocml.c 2009/01/01 20:40:16 1.31 +++ mandoc/Attic/mdocml.c 2009/01/03 18:38:39 1.32 @@ -1,4 +1,4 @@ -/* $Id: mdocml.c,v 1.31 2009/01/01 20:40:16 kristaps Exp $ */ +/* $Id: mdocml.c,v 1.32 2009/01/03 18:38:39 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -398,9 +398,18 @@ msg_err(void *arg, int tok, int col, enum mdoc_err typ case (ERR_SYNTAX_ARGMANY): lit = "syntax: too many values for macro argument"; break; - case (ERR_CHILD_HEAD): - lit = "scope context expects block-header child"; + case (ERR_SYNTAX_CHILDHEAD): + lit = "syntax: expected only block-header section"; break; + case (ERR_SYNTAX_CHILDBODY): + lit = "syntax: expected only a block-body section"; + break; + case (ERR_SYNTAX_EMPTYHEAD): + lit = "syntax: block-header section may not be empty"; + break; + case (ERR_SYNTAX_EMPTYBODY): + lit = "syntax: block-body section may not be empty"; + break; default: abort(); /* NOTREACHED */ @@ -488,6 +497,9 @@ msg_warn(void *arg, int tok, int col, enum mdoc_warn t break; case (WARN_SYNTAX_ARGLIKE): lit = "syntax: argument-like value"; + break; + case (WARN_SYNTAX_EMPTYBODY): + lit = "syntax: empty block-body section"; break; case (WARN_SEC_OO): lit = "section is out of conventional order";