aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/chars.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-08-16 09:51:17 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-08-16 09:51:17 +0000
commit06e6c7dc6e33f32a1df66e14e39620b5d0c2b20a (patch)
tree6901b3ce4b8fdccdc6e150f50dbcfd7bae45780e /chars.c
parent50e5e6079cf836d29fcbcd19b59c694b205d4caa (diff)
downloadmandoc-06e6c7dc6e33f32a1df66e14e39620b5d0c2b20a.tar.gz
mandoc-06e6c7dc6e33f32a1df66e14e39620b5d0c2b20a.tar.zst
mandoc-06e6c7dc6e33f32a1df66e14e39620b5d0c2b20a.zip
Remove \*(C+ from the pre-predefined strings. It is always `ds'-defined
when being used in manuals. Since we now support `ds', it's no longer necessary to account for it. From a bug report originally by Thomas Jeunet.
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 a0731e99..908584d3 100644
--- a/chars.c
+++ b/chars.c
@@ -1,4 +1,4 @@
-/* $Id: chars.c,v 1.25 2010/07/31 23:52:58 schwarze Exp $ */
+/* $Id: chars.c,v 1.26 2010/08/16 09:51:17 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 370
+#define LINES_MAX 369
#define CHAR(in, ch, code) \
{ NULL, (in), (ch), (code), CHARS_CHAR },