diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-07-30 12:58:21 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-07-30 12:58:21 +0000 |
commit | 1825ddd5edbb59f71fa3505747e772b6e10bc773 (patch) | |
tree | 5b7e05a4f77ea568caa3c27f37a682c551f21990 /roff.c | |
parent | 146dcfc953f48acd462342b3dfc86200e3e0a195 (diff) | |
download | mandoc-1825ddd5edbb59f71fa3505747e772b6e10bc773.tar.gz |
better name and wording for the last two non-generic errors
Diffstat (limited to 'roff.c')
-rw-r--r-- | roff.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1758,7 +1758,7 @@ roff_it(ROFF_ARGS) len = strcspn(cp, " \t"); cp[len] = '\0'; if ((iv = mandoc_strntoi(cp, len, 10)) <= 0) { - mandoc_msg(MANDOCERR_NUMERIC, r->parse, + mandoc_msg(MANDOCERR_IT_NONUM, r->parse, ln, ppos, *bufp + 1); return(ROFF_IGN); } |