summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/chars.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2010-03-26 01:22:08 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2010-03-26 01:22:08 +0000
commitdcee6dc15e4860634d392969fe25b0071e53a315 (patch)
treeb42684aa08d42078923d0055adf597f3cff60895 /usr.bin/mandoc/chars.c
parent632ebc98eb0fd48262863db3ebb35f66498f3d48 (diff)
merge 1.9.17, keeping local patches
* much improved pod2man support and low-level roff robustness * have -Tlint imply -Wall and -fstrict * use fewer macros and more enum in libman * and various bug fixes
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 edeec1abb30..0e8348bc13a 100644
--- a/usr.bin/mandoc/chars.c
+++ b/usr.bin/mandoc/chars.c
@@ -1,4 +1,4 @@
-/* $Id: chars.c,v 1.5 2010/02/18 02:11:25 schwarze Exp $ */
+/* $Id: chars.c,v 1.6 2010/03/26 01:22:05 schwarze Exp $ */
/*
* Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -38,7 +38,7 @@ struct ln {
#define CHARS_BOTH (CHARS_CHAR | CHARS_STRING)
};
-#define LINES_MAX 350
+#define LINES_MAX 369
#define CHAR(w, x, y, z, a, b) \
{ NULL, (w), (y), (a), (x), (z), (b), CHARS_CHAR },