diff options
-rw-r--r-- | mdoc_term.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mdoc_term.c b/mdoc_term.c index 2f033fba..df887ea6 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1609,11 +1609,14 @@ termp_bd_pre(DECL_ARGS) return(1); for (nn = n->child; nn; nn = nn->next) { + p->flags |= TERMP_NOSPACE; print_node(p, pair, m, nn); if (NULL == nn->next) continue; if (nn->prev && nn->prev->line < nn->line) term_flushln(p); + else if (NULL == nn->prev) + term_flushln(p); } return(0); |