]> git.cameronkatri.com Git - mandoc.git/blobdiff - mdoc_html.c
`Fl' now correctly suppresses the trailing space if followed by macros on the same...
[mandoc.git] / mdoc_html.c
index 05cafa8d526fe28b0aa763f0714cab3f61533621..43abe55d4580ca0986277d38ae06f5cae175d71c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_html.c,v 1.57 2010/04/05 08:51:56 kristaps Exp $ */
+/*     $Id: mdoc_html.c,v 1.58 2010/04/06 07:27:42 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -666,10 +666,10 @@ mdoc_fl_pre(MDOC_ARGS)
 
        print_text(h, "\\-");
 
-       /* A blank `Fl' should incur a subsequent space. */
-
        if (n->child)
                h->flags |= HTML_NOSPACE;
+       else if (n->next && n->next->line == n->line)
+               h->flags |= HTML_NOSPACE;
 
        return(1);
 }