summaryrefslogtreecommitdiffstats
path: root/mdocml.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-01-03 18:38:39 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-01-03 18:38:39 +0000
commit03bc94ff6e0dd8d8bb6126f4fbebcff8c00a7e6a (patch)
tree24177330ba365e4e6225e92b2ca42cc62662d642 /mdocml.c
parente2b62db20c0f9cce5dd25c92cf12b7d37531f1a4 (diff)
downloadmandoc-03bc94ff6e0dd8d8bb6126f4fbebcff8c00a7e6a.tar.gz
*** empty log message ***
Diffstat (limited to 'mdocml.c')
-rw-r--r--mdocml.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/mdocml.c b/mdocml.c
index 57c83861..3a72dbce 100644
--- a/mdocml.c
+++ b/mdocml.c
@@ -398,8 +398,17 @@ msg_err(void *arg, int tok, int col, enum mdoc_err type)
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();
@@ -489,6 +498,9 @@ msg_warn(void *arg, int tok, int col, enum mdoc_warn type)
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";
break;