From d602633ae86db6d0f89ec77701b98f9d493a376d Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Tue, 6 Jul 2010 10:54:05 +0000 Subject: Proper `Bk -words' support: only suppress breaks within a line, but allow end-of-line to break. This fixes the bad behaviour found when macros within `Bk' never break. "Excellent" schwarze@ --- mdoc_term.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/mdoc_term.c b/mdoc_term.c index 4d9b88ae..cb60e5cd 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -330,6 +330,23 @@ print_mdoc_node(DECL_ARGS) else if (termacts[n->tok].pre && ENDBODY_NOT == n->end) chld = (*termacts[n->tok].pre)(p, &npair, m, n); + /* + * Keeps only work until the end of a line. If a keep was + * invoked in a prior line, revert it to PREKEEP. + */ + + if (TERMP_KEEP & p->flags) { + if (n->prev && n->prev->line != n->line) { + p->flags &= ~TERMP_KEEP; + p->flags |= TERMP_PREKEEP; + } else if (NULL == n->prev) { + if (n->parent && n->parent->line != n->line) { + p->flags &= ~TERMP_KEEP; + p->flags |= TERMP_PREKEEP; + } + } + } + if (chld && n->child) print_mdoc_nodelist(p, &npair, m, n->child); -- cgit