Index: mdoc_term.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_term.c,v retrieving revision 1.174 diff -r1.174 mdoc_term.c 334a335,337 > * > * Also let SYNPRETTY sections behave as if they were wrapped in > * a `Bk' block. 337c340 < if (TERMP_KEEP & p->flags) { --- > if (TERMP_KEEP & p->flags || MDOC_SYNPRETTY & n->flags) { 346a350,361 > } > > /* > * Since SYNPRETTY sections aren't "turned off" with `Ek', we > * have to intuit whether we should disable formatting. > */ > > if ( ! (MDOC_SYNPRETTY & n->flags)) { > if (n->prev && MDOC_SYNPRETTY & n->prev->flags) > p->flags &= ~(TERMP_KEEP | TERMP_PREKEEP); > if (n->parent && MDOC_SYNPRETTY & n->parent->flags) > p->flags &= ~(TERMP_KEEP | TERMP_PREKEEP);