summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2009-06-21 19:40:16 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2009-06-21 19:40:16 +0000
commitbabce29467032fbead1aa59bf12efa9c9f7c2719 (patch)
treecd1e77931a2306b1e739b95a9758761a094fbcc3 /usr.bin
parent69c57cc592dc534f1e582266dea041b262c484f4 (diff)
sync to 1.7.19: simplify code; no functional change
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/mandoc/mdoc_action.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/mandoc/mdoc_action.c b/usr.bin/mandoc/mdoc_action.c
index 6265695c2a9..fec391c47c4 100644
--- a/usr.bin/mandoc/mdoc_action.c
+++ b/usr.bin/mandoc/mdoc_action.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_action.c,v 1.6 2009/06/21 19:09:58 schwarze Exp $ */
+/* $Id: mdoc_action.c,v 1.7 2009/06/21 19:40:15 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -814,9 +814,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);
}