diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-08-25 16:53:38 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-08-25 16:53:38 +0000 |
commit | 7582daff204d17b170462dc6b7f6fd218be6afc9 (patch) | |
tree | ff78b1959cd4fa9d7a802eb91fa11f10dc2f9e1e /read.c | |
parent | 4208da29a6d83d71a70576139d86e6a306290132 (diff) | |
download | mandoc-7582daff204d17b170462dc6b7f6fd218be6afc9.tar.gz |
Rudimentary implementation of the roff(7) .char (output glyph
definition) request, used for example by groff_hdtbl(7).
This simplistic implementation may interact incorrectly
with the .tr (input character translation) request.
But come on, you are not only using .char *and* .tr, but you do so
with respect to the same character in the same manual page?
Diffstat (limited to 'read.c')
-rw-r--r-- | read.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -198,6 +198,7 @@ static const char * const mandocerrs[MANDOCERR_MAX] = { "unknown library name", "invalid content in Rs block", "invalid Boolean argument", + "argument contains two font escapes", "unknown font, skipping request", "odd number of characters in request", @@ -252,6 +253,7 @@ static const char * const mandocerrs[MANDOCERR_MAX] = { "skipping display without arguments", "missing list type, using -item", "argument is not numeric, using 1", + "argument is not a character", "missing manual name, using \"\"", "uname(3) system call failed, using UNKNOWN", "unknown standard specifier", |