From a179c7ed6c4435e934471a7f39ff5517b6d176b8 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Wed, 29 May 2013 15:40:22 +0000 Subject: In SYNOPSIS mode, .Ek doesn't end a keep. Found and fixed on the plane to the OpenBSD t2k13 hackathon in Toronto. --- 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 015af506..dadbf513 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -2215,7 +2215,7 @@ static void termp_bk_post(DECL_ARGS) { - if (MDOC_BODY == n->type) + if (MDOC_BODY == n->type && ! (MDOC_SYNPRETTY & n->flags)) p->flags &= ~(TERMP_KEEP | TERMP_PREKEEP); } -- cgit