summaryrefslogtreecommitdiffstats
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-10-01 12:09:55 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-10-01 12:09:55 +0000
commita72d3964e9e3f62beff54d04f4caf25f5856e020 (patch)
tree2bacbbd7bc7b8c2bbd4e76ad766889b1a3f8ed15 /mdoc_html.c
parent605947a26498b333ec8366a8567d08cd999dc5d9 (diff)
downloadmandoc-a72d3964e9e3f62beff54d04f4caf25f5856e020.tar.gz
Fix small regression where `Op' had an extra space between the "[" and the SPAN.
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 d9e84547..2e2c5adb 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -2157,6 +2157,7 @@ mdoc_quote_pre(MDOC_ARGS)
/* FALLTHROUGH */
case (MDOC_Op):
print_text(h, "\\(lB");
+ h->flags |= HTML_NOSPACE;
PAIR_CLASS_INIT(&tag, "opt");
print_otag(h, TAG_SPAN, 1, &tag);
break;