=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/man_html.c,v retrieving revision 1.117 retrieving revision 1.118 diff -c -r1.117 -r1.118 *** src/usr.bin/mandoc/man_html.c 2019/01/05 09:46:26 1.117 --- src/usr.bin/mandoc/man_html.c 2019/01/05 21:52:57 1.118 *************** *** 1,4 **** ! /* $OpenBSD: man_html.c,v 1.117 2019/01/05 09:46:26 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons * Copyright (c) 2013-2015, 2017-2019 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: man_html.c,v 1.118 2019/01/05 21:52:57 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons * Copyright (c) 2013-2015, 2017-2019 Ingo Schwarze *************** *** 254,261 **** /* 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)) { /* In .nf =
, print even empty lines. */
  		h->col++;
  		print_endline(h);
--- 254,261 ----
  	/* This will automatically close out any font scope. */
  	print_stagq(h, t);
  
! 	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);