From 363897ee9adeffb350f656dffa050237faf305a3 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_html.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'mdoc_html.c') diff --git a/mdoc_html.c b/mdoc_html.c index 9d76e1d2..a62ec156 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_html.c,v 1.67 2010/05/24 12:17:09 kristaps Exp $ */ +/* $Id: mdoc_html.c,v 1.68 2010/05/29 18:47:54 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -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); } -- cgit v1.2.3