From 13a83155f6409b661fc63fad89e4f0f88094ca1a Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Tue, 1 Jun 2010 14:51:09 +0000 Subject: De Morgan's law not being applied properly. Noted by Ulrich Spoerlein. --- mdoc_term.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mdoc_term.c') diff --git a/mdoc_term.c b/mdoc_term.c index 6344b22d..94981f19 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1872,7 +1872,7 @@ termp_in_post(DECL_ARGS) term_word(p, ">"); term_fontpop(p); - if (SEC_SYNOPSIS != n->sec && ! (MDOC_LINE & n->flags)) + if (SEC_SYNOPSIS != n->sec || ! (MDOC_LINE & n->flags)) return; term_newln(p); -- cgit