]> git.cameronkatri.com Git - mandoc.git/blobdiff - html.c
Begin cleaning up scaling units.
[mandoc.git] / html.c
diff --git a/html.c b/html.c
index 0fd6f04d35e437fdfaa2e897869c077b0ce5dbab..056d287f14c3e083deed6e149fa3475699de20ae 100644 (file)
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/*     $Id: html.c,v 1.161 2014/08/13 15:25:22 schwarze Exp $ */
+/*     $Id: html.c,v 1.162 2014/08/13 20:34:29 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -760,6 +760,8 @@ bufcat_su(struct html *h, const char *p, const struct roffsu *su)
        v = su->scale;
        if (SCALE_MM == su->unit && 0.0 == (v /= 100.0))
                v = 1.0;
+       else if (SCALE_BU == su->unit)
+               v /= 24.0;
 
        bufcat_fmt(h, "%s: %.2f%s;", p, v, roffscales[su->unit]);
 }