diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-04-04 22:38:26 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-04-04 22:38:26 +0000 |
commit | a6fc57313f118d9293e5a03f77a3d10cccda0819 (patch) | |
tree | b7341196faba6e41ae8202a906975ab769079794 | |
parent | 878fb45e912fd37c6573dd36a7e3cafd792cceb8 (diff) | |
download | mandoc-a6fc57313f118d9293e5a03f77a3d10cccda0819.tar.gz |
Suppress a space following the "(" for -T[x]html `Fn'. Found by random
perusal of online manuals.
-rw-r--r-- | mdoc_html.c | 1 |
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"); |