aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/chars.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-09-15 13:10:30 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-09-15 13:10:30 +0000
commit9092c5d03b04ccca832c2642ae0a453409c7c0a9 (patch)
tree886d4e2febeff1b28df274ba0098ad518a86b745 /chars.c
parent2837a0fd20a49e5b5aa7dfb5ba257b145d957531 (diff)
downloadmandoc-9092c5d03b04ccca832c2642ae0a453409c7c0a9.tar.gz
mandoc-9092c5d03b04ccca832c2642ae0a453409c7c0a9.tar.zst
mandoc-9092c5d03b04ccca832c2642ae0a453409c7c0a9.zip
Remove last pod2man escapes. These render ok, although \*(-- renders as
O- because the underlying macro depends on \(*W, which a prior pod2man preamble `tr' macro rewrites as "-". This is an error in groff as this tramples on the real \(*W, or Greek omega.
Diffstat (limited to 'chars.c')
-rw-r--r--chars.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/chars.c b/chars.c
index f66fb538..43fedd6a 100644
--- a/chars.c
+++ b/chars.c
@@ -1,4 +1,4 @@
-/* $Id: chars.c,v 1.29 2010/09/04 20:18:53 kristaps Exp $ */
+/* $Id: chars.c,v 1.30 2010/09/15 13:10:30 kristaps Exp $ */
/*
* Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -40,7 +40,7 @@ struct ln {
#define CHARS_BOTH (CHARS_CHAR | CHARS_STRING)
};
-#define LINES_MAX 362
+#define LINES_MAX 351
#define CHAR(in, ch, code) \
{ NULL, (in), (ch), (code), CHARS_CHAR },