diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2014-01-22 20:58:36 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2014-01-22 20:58:36 +0000 |
commit | 3351a6d53212c73f2ac46179b1feb1a8996dce7a (patch) | |
tree | f046f5290fcf75e5007f048424e1e03ec1f646b9 /usr.bin/mandoc/chars.c | |
parent | c9e4c585247a34314a6295f462a612b92047bc8d (diff) |
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 'usr.bin/mandoc/chars.c')
-rw-r--r-- | usr.bin/mandoc/chars.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/chars.c b/usr.bin/mandoc/chars.c index d8a7a1d3b23..6506ed3a0a0 100644 --- a/usr.bin/mandoc/chars.c +++ b/usr.bin/mandoc/chars.c @@ -1,4 +1,4 @@ -/* $Id: chars.c,v 1.25 2013/06/20 22:29:38 schwarze Exp $ */ +/* $Id: chars.c,v 1.26 2014/01/22 20:58:35 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org> @@ -33,7 +33,7 @@ struct ln { int unicode; }; -#define LINES_MAX 329 +#define LINES_MAX 330 #define CHAR(in, ch, code) \ { NULL, (in), (ch), (code) }, |