summaryrefslogtreecommitdiffstats
path: root/roff.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-07-30 12:58:21 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-07-30 12:58:21 +0000
commit1825ddd5edbb59f71fa3505747e772b6e10bc773 (patch)
tree5b7e05a4f77ea568caa3c27f37a682c551f21990 /roff.c
parent146dcfc953f48acd462342b3dfc86200e3e0a195 (diff)
downloadmandoc-1825ddd5edbb59f71fa3505747e772b6e10bc773.tar.gz
better name and wording for the last two non-generic errors
Diffstat (limited to 'roff.c')
-rw-r--r--roff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/roff.c b/roff.c
index 83b30d27..fe26c1fe 100644
--- a/roff.c
+++ b/roff.c
@@ -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);
}