diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2015-02-17 20:37:16 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2015-02-17 20:37:16 +0000 |
commit | 0603d32955cc056f11f3defcb885c77f7a45741a (patch) | |
tree | b452b5d9be407095a29d875d30fb2b2a082e8eb0 /chars.c | |
parent | 27a44c9e5c3585e621cce681418cec8e4d676158 (diff) | |
download | mandoc-0603d32955cc056f11f3defcb885c77f7a45741a.tar.gz |
Render \(lq and \(rq as '"' in -Tascii mode but leave the rendering
of .Do/.Dc, .Dq, .Lb, and .St untouched.
Reduces groff-mandoc differences in OpenBSD base by about 7%.
Reminded of the issue by naddy@.
Diffstat (limited to 'chars.c')
-rw-r--r-- | chars.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -38,7 +38,7 @@ struct ln { int unicode; }; -#define LINES_MAX 330 +#define LINES_MAX 332 #define CHAR(in, ch, code) \ { NULL, (in), (ch), (code) }, |