From aa5f04e0731be96750ee699e7cee4fe71ebb7a38 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Thu, 22 Jul 2010 13:36:25 +0000 Subject: Have `nf' and `fi' flush lines. This is necessary or the LITERAL will be meaningless when invoked within a non-flushing context. This based on a formatting bug report submitted by Jonathon Gray (jsg@) via Christian Weisgerber (naddy@). --- man_term.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/man_term.c b/man_term.c index 0ee9baf0..6958ac45 100644 --- a/man_term.c +++ b/man_term.c @@ -252,6 +252,7 @@ static int pre_fi(DECL_ARGS) { + term_newln(p); mt->fl &= ~MANT_LITERAL; return(1); } @@ -262,6 +263,7 @@ static int pre_nf(DECL_ARGS) { + term_newln(p); mt->fl |= MANT_LITERAL; return(MAN_Vb != n->tok); } -- cgit