diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-10-01 12:09:55 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-10-01 12:09:55 +0000 |
commit | a72d3964e9e3f62beff54d04f4caf25f5856e020 (patch) | |
tree | 2bacbbd7bc7b8c2bbd4e76ad766889b1a3f8ed15 /mdoc_html.c | |
parent | 605947a26498b333ec8366a8567d08cd999dc5d9 (diff) | |
download | mandoc-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.c | 1 |
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; |