diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-12-02 10:08:06 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-12-02 10:08:06 +0000 |
commit | 110fb75482f7f2c0f483cf8b3643b20e6600a1c4 (patch) | |
tree | 39019d1d0c3ea61d852d9f5fdd3fee3b59fd9051 /html.h | |
parent | efe93b8f37e682132d735c3ed77f4c64aedc5aef (diff) | |
download | mandoc-110fb75482f7f2c0f483cf8b3643b20e6600a1c4.tar.gz |
Fix the implementation and documentation of \c (continue text input line).
In particular, make it work in no-fill mode, too.
Reminded by Carsten dot Kunze at arcor dot de (Heirloom roff).
Diffstat (limited to 'html.h')
-rw-r--r-- | html.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -126,6 +126,7 @@ struct html { #define HTML_SKIPCHAR (1 << 6) /* skip the next character */ #define HTML_NOSPLIT (1 << 7) /* do not break line before .An */ #define HTML_SPLIT (1 << 8) /* break line before .An */ +#define HTML_NONEWLINE (1 << 9) /* No line break in nofill mode. */ struct tagq tags; /* stack of open tags */ struct rofftbl tbl; /* current table */ struct tag *tblt; /* current open table scope */ |