=================================================================== RCS file: /cvs/mandoc/man_term.c,v retrieving revision 1.206 retrieving revision 1.207 diff -u -p -r1.206 -r1.207 --- mandoc/man_term.c 2017/06/17 01:27:05 1.206 +++ mandoc/man_term.c 2017/06/17 13:06:16 1.207 @@ -1,4 +1,4 @@ -/* $Id: man_term.c,v 1.206 2017/06/17 01:27:05 schwarze Exp $ */ +/* $Id: man_term.c,v 1.207 2017/06/17 13:06:16 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons * Copyright (c) 2010-2015, 2017 Ingo Schwarze @@ -872,7 +872,10 @@ print_man_node(DECL_ARGS) * before printing the line's data. */ if (*n->string == '\0') { - term_vspace(p); + if (p->flags & TERMP_NONEWLINE) + term_newln(p); + else + term_vspace(p); return; } else if (*n->string == ' ' && n->flags & NODE_LINE && (p->flags & TERMP_NONEWLINE) == 0)