aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-05-29 18:47:54 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-05-29 18:47:54 +0000
commit363897ee9adeffb350f656dffa050237faf305a3 (patch)
treef5c1889eaa821a973c93a8ae248a6d682fb24899 /mdoc_term.c
parentd43a3b25e58b22f878cf000f42454792b509cd9d (diff)
downloadmandoc-363897ee9adeffb350f656dffa050237faf305a3.tar.gz
mandoc-363897ee9adeffb350f656dffa050237faf305a3.tar.zst
mandoc-363897ee9adeffb350f656dffa050237faf305a3.zip
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_term.c')
-rw-r--r--mdoc_term.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mdoc_term.c b/mdoc_term.c
index f149d5c0..0e48959d 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_term.c,v 1.131 2010/05/26 10:39:35 kristaps Exp $ */
+/* $Id: mdoc_term.c,v 1.132 2010/05/29 18:47:54 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -2098,6 +2098,8 @@ termp_li_pre(DECL_ARGS)
{
term_fontpush(p, TERMFONT_NONE);
+ if (NULL == n->child)
+ term_word(p, "");
return(1);
}