summaryrefslogtreecommitdiffstats
path: root/chars.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-01-22 20:58:39 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-01-22 20:58:39 +0000
commit654e28baaa103a868af40d8ce155ddd09fe76f98 (patch)
tree061e60883aded25bdcf06071df7bf3b4e00c8548 /chars.c
parent3d40007c4e92346d3e69337fa770e26de69c6ffe (diff)
downloadmandoc-654e28baaa103a868af40d8ce155ddd09fe76f98.tar.gz
Implement the \: (optional line break) escape sequence,
documented in the Ossanna-Kernighan-Ritter troff manual and also supported by groff. Missing feature reported by Steffen Nurpmeso <sdaoden at gmail dot com>.
Diffstat (limited to 'chars.c')
-rw-r--r--chars.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/chars.c b/chars.c
index ad3ffd40..6370b219 100644
--- a/chars.c
+++ b/chars.c
@@ -37,7 +37,7 @@ struct ln {
int unicode;
};
-#define LINES_MAX 329
+#define LINES_MAX 330
#define CHAR(in, ch, code) \
{ NULL, (in), (ch), (code) },