From 9556337196fc2bcc77b1327d58828a073ca49879 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 29 May 2010 18:47:54 +0000 Subject: 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. --- mdoc_term.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mdoc_term.c') diff --git a/mdoc_term.c b/mdoc_term.c index 943a880d..65c39277 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -2098,6 +2098,8 @@ termp_li_pre(DECL_ARGS) { term_fontpush(p, TERMFONT_NONE); + if (NULL == n->child) + term_word(p, ""); return(1); } -- cgit