From 39a9b3c973d1e32bc0a38cb78ede6b3d6c3ea2ea Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Mon, 4 Apr 2011 22:38:26 +0000 Subject: Suppress a space following the "(" for -T[x]html `Fn'. Found by random perusal of online manuals. --- mdoc_html.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mdoc_html.c b/mdoc_html.c index 49782a39..c3b3f68b 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_html.c,v 1.162 2011/04/04 16:48:18 kristaps Exp $ */ +/* $Id: mdoc_html.c,v 1.163 2011/04/04 22:38:26 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * @@ -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"); -- cgit v1.2.3