=================================================================== RCS file: /cvs/mandoc/man_html.c,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- mandoc/man_html.c 2009/10/27 04:50:15 1.15 +++ mandoc/man_html.c 2009/10/28 08:00:18 1.16 @@ -1,4 +1,4 @@ -/* $Id: man_html.c,v 1.15 2009/10/27 04:50:15 kristaps Exp $ */ +/* $Id: man_html.c,v 1.16 2009/10/28 08:00:18 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -334,6 +334,9 @@ man_br_pre(MAN_ARGS) bufcat_su(h, "height", &su); PAIR_STYLE_INIT(&tag, h); print_otag(h, TAG_DIV, 1, &tag); + /* So the div isn't empty: */ + print_text(h, "\\~"); + return(0); }