From a3270aeee419e3ae560753e7fee9a12e9d54ed22 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Sat, 13 Jul 2013 12:52:07 +0000 Subject: Rudimentary implementation of the .it request (input line trap). As with any low-level roff request involving subtle interactions with macro internals, this implementation is not exact, but it does handle the simplest cases. This request occurs in man(7) code generated from DocBook, for example mysql(1) and yasm_arch(7). Thanks to brad@ for reporting the issue back in January 2011. --- read.c | 1 + 1 file changed, 1 insertion(+) (limited to 'read.c') diff --git a/read.c b/read.c index 54d26eb6..52daedc4 100644 --- a/read.c +++ b/read.c @@ -185,6 +185,7 @@ static const char * const mandocerrs[MANDOCERR_MAX] = { "macro requires line argument(s)", "macro requires body argument(s)", "macro requires argument(s)", + "request requires a numeric argument", "missing list type", "line argument(s) will be lost", "body argument(s) will be lost", -- cgit