summaryrefslogtreecommitdiffstats
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-04-04 22:38:26 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-04-04 22:38:26 +0000
commita6fc57313f118d9293e5a03f77a3d10cccda0819 (patch)
treeb7341196faba6e41ae8202a906975ab769079794 /mdoc_html.c
parent878fb45e912fd37c6573dd36a7e3cafd792cceb8 (diff)
downloadmandoc-a6fc57313f118d9293e5a03f77a3d10cccda0819.tar.gz
Suppress a space following the "(" for -T[x]html `Fn'. Found by random
perusal of online manuals.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index c5505071..249c3832 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1558,6 +1558,7 @@ mdoc_fn_pre(MDOC_ARGS)
h->flags |= HTML_NOSPACE;
print_text(h, "(");
+ h->flags |= HTML_NOSPACE;
bufinit(h);
PAIR_CLASS_INIT(&tag[0], "farg");