=================================================================== RCS file: /cvs/mandoc/man_html.c,v retrieving revision 1.164 retrieving revision 1.165 diff -u -p -r1.164 -r1.165 --- mandoc/man_html.c 2019/01/05 09:46:34 1.164 +++ mandoc/man_html.c 2019/01/05 21:55:11 1.165 @@ -1,4 +1,4 @@ -/* $Id: man_html.c,v 1.164 2019/01/05 09:46:34 schwarze Exp $ */ +/* $Id: man_html.c,v 1.165 2019/01/05 21:55:11 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons * Copyright (c) 2013-2015, 2017-2019 Ingo Schwarze @@ -256,8 +256,8 @@ print_man_node(MAN_ARGS) /* This will automatically close out any font scope. */ print_stagq(h, t); - if (n->flags & NODE_NOFILL && - (n->next == NULL || n->next->flags & NODE_LINE)) { + if (n->flags & NODE_NOFILL && n->tok != MAN_YS && + (n->next != NULL && n->next->flags & NODE_LINE)) { /* In .nf =
, print even empty lines. */
 		h->col++;
 		print_endline(h);