summaryrefslogtreecommitdiffstats
path: root/roff.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-07-03 21:23:54 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-07-03 21:23:54 +0000
commitb3a2c4a288eaff61368f73f9008d243d10ff5f7c (patch)
treed2b35c144ce05d47ad6dbea71b081846fdc19539 /roff.c
parent02c50c123f386b824e755e7f6334792530c88411 (diff)
downloadmandoc-b3a2c4a288eaff61368f73f9008d243d10ff5f7c.tar.gz
MANDOCERR_NOARGS reported three completely unrelated classes of problems.
Split the roff(7) parts out of it and report the request names for these cases.
Diffstat (limited to 'roff.c')
-rw-r--r--roff.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/roff.c b/roff.c
index 9dfdf7fb..ab155462 100644
--- a/roff.c
+++ b/roff.c
@@ -917,7 +917,8 @@ roff_block(ROFF_ARGS)
if (ROFF_ig != tok) {
if ('\0' == *cp) {
- mandoc_msg(MANDOCERR_NOARGS, r->parse, ln, ppos, NULL);
+ mandoc_msg(MANDOCERR_REQ_EMPTY, r->parse,
+ ln, ppos, roffs[tok].name);
return(ROFF_IGN);
}
@@ -1285,7 +1286,8 @@ roff_cond(ROFF_ARGS)
*/
if ('\0' == (*bufp)[pos])
- mandoc_msg(MANDOCERR_NOARGS, r->parse, ln, ppos, NULL);
+ mandoc_msg(MANDOCERR_COND_EMPTY, r->parse,
+ ln, ppos, roffs[tok].name);
r->last->endspan = 1;