diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-07-22 13:36:25 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-07-22 13:36:25 +0000 |
commit | aa5f04e0731be96750ee699e7cee4fe71ebb7a38 (patch) | |
tree | 243c613761e0238d486c0fdcc75c1417c0123038 /man_term.c | |
parent | 8826f3d114038cc6c9e9a877e8d181e900196a15 (diff) | |
download | mandoc-aa5f04e0731be96750ee699e7cee4fe71ebb7a38.tar.gz |
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@).
Diffstat (limited to 'man_term.c')
-rw-r--r-- | man_term.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); } |