summaryrefslogtreecommitdiffstats
path: root/mdoc_action.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdoc_action.c')
-rw-r--r--mdoc_action.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/mdoc_action.c b/mdoc_action.c
index 8aa7c92f..21cc2c1d 100644
--- a/mdoc_action.c
+++ b/mdoc_action.c
@@ -979,14 +979,12 @@ static int
pre_bd(PRE_ARGS)
{
- if (MDOC_BLOCK == n->type)
- return(pre_offset(m, n));
if (MDOC_BODY != n->type)
return(1);
- if (DISP_literal == n->data.disp)
+ if (DISP_literal == n->data.Bd.type)
m->flags |= MDOC_LITERAL;
- if (DISP_unfilled == n->data.disp)
+ if (DISP_unfilled == n->data.Bd.type)
m->flags |= MDOC_LITERAL;
return(1);