diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-07-03 21:23:54 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-07-03 21:23:54 +0000 |
commit | b3a2c4a288eaff61368f73f9008d243d10ff5f7c (patch) | |
tree | d2b35c144ce05d47ad6dbea71b081846fdc19539 /roff.c | |
parent | 02c50c123f386b824e755e7f6334792530c88411 (diff) | |
download | mandoc-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.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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; |