=================================================================== RCS file: /cvs/mandoc/mdoc_term.c,v retrieving revision 1.102 retrieving revision 1.104 diff -u -p -r1.102 -r1.104 --- mandoc/mdoc_term.c 2009/11/12 05:50:12 1.102 +++ mandoc/mdoc_term.c 2010/01/01 13:35:30 1.104 @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.102 2009/11/12 05:50:12 kristaps Exp $ */ +/* $Id: mdoc_term.c,v 1.104 2010/01/01 13:35:30 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -1020,7 +1020,12 @@ termp_fl_pre(DECL_ARGS) term_fontpush(p, TERMFONT_BOLD); term_word(p, "\\-"); - p->flags |= TERMP_NOSPACE; + + /* A blank `Fl' should incur a subsequent space. */ + + if (n->child) + p->flags |= TERMP_NOSPACE; + return(1); }