diff options
-rw-r--r-- | mdoc_term.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mdoc_term.c b/mdoc_term.c index 4cb7e66e..f6b1e583 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1569,7 +1569,6 @@ termp_bd_pre(DECL_ARGS) * Ew. */ - p->flags |= TERMP_LITERAL; ln = node->child ? node->child->line : 0; for (node = node->child; node; node = node->next) { @@ -1592,10 +1591,7 @@ termp_bd_post(DECL_ARGS) if (MDOC_BODY != node->type) return; - term_flushln(p); - p->flags &= ~TERMP_LITERAL; - p->flags |= TERMP_NOSPACE; } |