diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-29 18:58:52 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-29 18:58:52 +0000 |
commit | cd3f87782ffba7533bf3f5c52b02192aa287533b (patch) | |
tree | f9956f93b246da68aaee48674816f5ab7db5535e /mdoc_html.c | |
parent | 856ccfd0e453b0e0b926d34de280f8e2649d3da6 (diff) | |
download | mandoc-cd3f87782ffba7533bf3f5c52b02192aa287533b.tar.gz |
Moved printing of empty word [back] into mdoc_action.c so that it's not
mirrored across front-ends.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index e0db3832..22011403 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -2091,8 +2091,6 @@ 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); } |