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 /mdoc_html.c | |
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 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index 5ef6dcc3..305ad499 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1201,7 +1201,8 @@ mdoc_bd_pre(MDOC_ARGS) default: break; } - if (nn->next && nn->next->line == nn->line) + if (h->flags & HTML_NONEWLINE || + (nn->next && ! (nn->next->flags & MDOC_LINE))) continue; else if (nn->next) print_text(h, "\n"); |