summaryrefslogtreecommitdiffstats
path: root/html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-10-09 06:54:11 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-10-09 06:54:11 +0000
commit7ecbe69366c1257a57ee2a88b71916360b19bdc1 (patch)
tree1ec2a72bc9e9c8a6c3a17744949d2263d583f3f3 /html.c
parent3ebfba7c53e0e445e1e477d3bc4e9c99f0307dda (diff)
downloadmandoc-7ecbe69366c1257a57ee2a88b71916360b19bdc1.tar.gz
Scaling factor made floating point (as per groff.7) and, e.g., gnu/usr.bin/cvs/man/cvs.1.
Diffstat (limited to 'html.c')
-rw-r--r--html.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/html.c b/html.c
index 8fa986a6..3ae5e7b2 100644
--- a/html.c
+++ b/html.c
@@ -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 roffsu *su)
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);
}