diff options
-rw-r--r-- | mdoc_action.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mdoc_action.c b/mdoc_action.c index 4631744b..81e26e6a 100644 --- a/mdoc_action.c +++ b/mdoc_action.c @@ -819,9 +819,8 @@ static int pre_dl(PRE_ARGS) { - if (MDOC_BODY != n->type) - return(1); - m->flags |= MDOC_LITERAL; + if (MDOC_BODY == n->type) + m->flags |= MDOC_LITERAL; return(1); } |