summaryrefslogtreecommitdiffstats
path: root/mdoc_term.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdoc_term.c')
-rw-r--r--mdoc_term.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/mdoc_term.c b/mdoc_term.c
index e521a0ce..55d5d1e8 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -842,8 +842,6 @@ termp_it_pre(DECL_ARGS)
if (MDOC_BODY == n->prev->type)
p->flags |= TERMP_NOLPAD;
- p->flags |= TERMP_IGNDELIM;
-
break;
case (LIST_diag):
if (MDOC_HEAD == n->type)
@@ -1002,13 +1000,6 @@ termp_it_post(DECL_ARGS)
p->flags &= ~TERMP_TWOSPACE;
p->flags &= ~TERMP_NOLPAD;
p->flags &= ~TERMP_HANG;
-
- /*
- * TERMP_IGNDELIM is also set by `Pf', but it is safe
- * to clear it here because `Pf' cannot contain `It'.
- */
-
- p->flags &= ~TERMP_IGNDELIM;
}
@@ -1813,10 +1804,6 @@ static void
termp_pf_post(DECL_ARGS)
{
- /*
- * XXX Resetting TERMP_IGNDELIM here is not safe
- * because `Pf' can be used inside `Bl -column'.
- */
p->flags &= ~TERMP_IGNDELIM;
p->flags |= TERMP_NOSPACE;
}