summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/chars.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2015-02-17 20:33:45 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2015-02-17 20:33:45 +0000
commit513c7697d51503f6ed8f06ebc21e585f89133364 (patch)
treed3cda3b7a74e364e46fabee11258c72457f21de8 /usr.bin/mandoc/chars.c
parentdd20d82e3ba01f09ad08f4be393409405cae853c (diff)
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 base by about 7%. Reminded of the issue by naddy@.
Diffstat (limited to 'usr.bin/mandoc/chars.c')
-rw-r--r--usr.bin/mandoc/chars.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/chars.c b/usr.bin/mandoc/chars.c
index de89dc9f4b8..a606e72b385 100644
--- a/usr.bin/mandoc/chars.c
+++ b/usr.bin/mandoc/chars.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: chars.c,v 1.35 2014/10/29 00:17:01 schwarze Exp $ */
+/* $OpenBSD: chars.c,v 1.36 2015/02/17 20:33:44 schwarze Exp $ */
/*
* Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2011, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -36,7 +36,7 @@ struct ln {
int unicode;
};
-#define LINES_MAX 330
+#define LINES_MAX 332
#define CHAR(in, ch, code) \
{ NULL, (in), (ch), (code) },