aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-05-29 18:58:52 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-05-29 18:58:52 +0000
commit1cfb674e05b4b5cd36e7ff8b437258f2421e4c49 (patch)
tree07918b10def0c34d4bc1df060fc7b2aa4dee87c2 /mdoc_html.c
parent08bcb731d82732ede8c159ba0d53a5f65c1fd37d (diff)
downloadmandoc-1cfb674e05b4b5cd36e7ff8b437258f2421e4c49.tar.gz
mandoc-1cfb674e05b4b5cd36e7ff8b437258f2421e4c49.tar.zst
mandoc-1cfb674e05b4b5cd36e7ff8b437258f2421e4c49.zip
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.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index a62ec156..62d39243 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.68 2010/05/29 18:47:54 kristaps Exp $ */
+/* $Id: mdoc_html.c,v 1.69 2010/05/29 18:58:52 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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);
}