=================================================================== RCS file: /cvs/mandoc/html.c,v retrieving revision 1.61 retrieving revision 1.62 diff -u -p -r1.61 -r1.62 --- mandoc/html.c 2009/10/07 15:27:11 1.61 +++ mandoc/html.c 2009/10/09 06:54:11 1.62 @@ -1,4 +1,4 @@ -/* $Id: html.c,v 1.61 2009/10/07 15:27:11 kristaps Exp $ */ +/* $Id: html.c,v 1.62 2009/10/09 06:54:11 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -599,7 +599,7 @@ buffmt_man(struct html *h, void bufcat_su(struct html *h, const char *p, const struct roffsu *su) { - int v; + double v; char *u; v = su->scale; @@ -639,5 +639,9 @@ bufcat_su(struct html *h, const char *p, const struct break; } - buffmt(h, "%s: %d%s;", p, v, u); + if (su->pt) + buffmt(h, "%s: %f%s;", p, v, u); + else + /* LINTED */ + buffmt(h, "%s: %d%s;", p, (int)v, u); }