=================================================================== RCS file: /cvs/mandoc/Attic/mdoc_action.c,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- mandoc/Attic/mdoc_action.c 2009/06/17 14:10:09 1.15 +++ mandoc/Attic/mdoc_action.c 2009/06/17 14:14:51 1.16 @@ -1,4 +1,4 @@ -/* $Id: mdoc_action.c,v 1.15 2009/06/17 14:10:09 kristaps Exp $ */ +/* $Id: mdoc_action.c,v 1.16 2009/06/17 14:14:51 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -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); }