=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/mdoc_term.c,v retrieving revision 1.205 retrieving revision 1.206 diff -c -r1.205 -r1.206 *** src/usr.bin/mandoc/mdoc_term.c 2015/02/01 23:10:15 1.205 --- src/usr.bin/mandoc/mdoc_term.c 2015/02/05 00:13:34 1.206 *************** *** 1,4 **** ! /* $OpenBSD: mdoc_term.c,v 1.205 2015/02/01 23:10:15 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2012-2015 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: mdoc_term.c,v 1.206 2015/02/05 00:13:34 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2012-2015 Ingo Schwarze *************** *** 317,328 **** * invoked in a prior line, revert it to PREKEEP. */ ! if (TERMP_KEEP & p->flags) { ! if (n->prev ? (n->prev->lastline != n->line) : ! (n->parent && n->parent->line != n->line)) { ! p->flags &= ~TERMP_KEEP; ! p->flags |= TERMP_PREKEEP; ! } } /* --- 317,325 ---- * invoked in a prior line, revert it to PREKEEP. */ ! if (p->flags & TERMP_KEEP && n->flags & MDOC_LINE) { ! p->flags &= ~TERMP_KEEP; ! p->flags |= TERMP_PREKEEP; } /*