=================================================================== RCS file: /cvs/mandoc/man_html.c,v retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- mandoc/man_html.c 2010/12/06 14:07:01 1.48 +++ mandoc/man_html.c 2010/12/06 14:12:48 1.49 @@ -1,4 +1,4 @@ -/* $Id: man_html.c,v 1.48 2010/12/06 14:07:01 kristaps Exp $ */ +/* $Id: man_html.c,v 1.49 2010/12/06 14:12:48 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * @@ -362,15 +362,11 @@ man_br_pre(MAN_ARGS) SCALE_VS_INIT(&su, 1); - switch (n->tok) { - case (MAN_sp): + if (MAN_sp == n->tok) { if (n->child) a2roffsu(n->child->string, &su, SCALE_VS); - break; - default: + } else su.scale = 0; - break; - } bufcat_su(h, "height", &su); PAIR_STYLE_INIT(&tag, h);