diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-17 14:14:51 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-17 14:14:51 +0000 |
commit | 0ad360ea8cf5b596bdef7ba11568d21fe1cfaf55 (patch) | |
tree | 58f3ce5d64ba502114aaec2d42d486feffa77ef6 /mdoc_action.c | |
parent | 2d4c430c38205b2c5c65b0facaafa3aa81bac9a7 (diff) | |
download | mandoc-0ad360ea8cf5b596bdef7ba11568d21fe1cfaf55.tar.gz |
Clean-up.
Diffstat (limited to 'mdoc_action.c')
-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); } |