diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-29 18:47:54 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-29 18:47:54 +0000 |
commit | 9556337196fc2bcc77b1327d58828a073ca49879 (patch) | |
tree | 137bbeeb6c506d7ff53fd9c4c8f6901e5e3c0cac /mdoc_html.c | |
parent | b3536e4d2b9fcb0daf7141c545883a7d2b442e33 (diff) | |
download | mandoc-9556337196fc2bcc77b1327d58828a073ca49879.tar.gz |
Commit of patch floated on discuss@ a few days ago: if an in_line scope
has not been opened and closing punctuation is encountered AND the macro
is marked as accepting no-content (or `Li'), then open an empty scope.
Added regression tests for `Fl' and `Li' testing this behaviour.
Also, squeeze hyph0.in tests into the last characters of each line so
that groff doesn't hyphenate and break the test.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index 22011403..e0db3832 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -2091,6 +2091,8 @@ mdoc_li_pre(MDOC_ARGS) PAIR_CLASS_INIT(&tag, "lit"); print_otag(h, TAG_SPAN, 1, &tag); + if (NULL == n->child) + print_text(h, ""); return(1); } |