=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/man_html.c,v retrieving revision 1.5 retrieving revision 1.6 diff -c -r1.5 -r1.6 *** src/usr.bin/mandoc/man_html.c 2010/02/18 02:11:26 1.5 --- src/usr.bin/mandoc/man_html.c 2010/03/02 01:00:39 1.6 *************** *** 1,4 **** ! /* $Id: man_html.c,v 1.5 2010/02/18 02:11:26 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * --- 1,4 ---- ! /* $Id: man_html.c,v 1.6 2010/03/02 01:00:39 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * *************** *** 99,104 **** --- 99,107 ---- { man_ign_pre, NULL }, /* DT */ { man_ign_pre, NULL }, /* UC */ { man_ign_pre, NULL }, /* PD */ + { man_br_pre, NULL }, /* Sp */ + { NULL, NULL }, /* Vb */ + { NULL, NULL }, /* Vi */ }; *************** *** 331,337 **** SCALE_VS_INIT(&su, 1); ! if (MAN_sp == n->tok && n->child) a2roffsu(n->child->string, &su, SCALE_VS); else if (MAN_br == n->tok) su.scale = 0; --- 334,340 ---- SCALE_VS_INIT(&su, 1); ! if ((MAN_sp == n->tok || MAN_Sp == n->tok) && n->child) a2roffsu(n->child->string, &su, SCALE_VS); else if (MAN_br == n->tok) su.scale = 0;