summaryrefslogtreecommitdiffstatshomepage
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
commitb91662305e6d87cdb8d5494c0fc742b1dd45b29c (patch)
treecda57f136096de0daea7fbe17e7c4c9c1bbbc131 /html.c
parent390db1686bea8852d19f42029363d12254349a44 (diff)
downloadmandoc-b91662305e6d87cdb8d5494c0fc742b1dd45b29c.tar.gz
mandoc-b91662305e6d87cdb8d5494c0fc742b1dd45b29c.tar.zst
mandoc-b91662305e6d87cdb8d5494c0fc742b1dd45b29c.zip
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.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/html.c b/html.c
index 00094522..5ab4c877 100644
--- a/html.c
+++ b/html.c
@@ -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 <kristaps@kth.se>
*
@@ -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);
}