=================================================================== RCS file: /cvs/mandoc/term_ascii.c,v retrieving revision 1.28 retrieving revision 1.30 diff -u -p -r1.28 -r1.30 --- mandoc/term_ascii.c 2014/08/10 23:54:41 1.28 +++ mandoc/term_ascii.c 2014/08/14 22:33:10 1.30 @@ -1,4 +1,4 @@ -/* $Id: term_ascii.c,v 1.28 2014/08/10 23:54:41 schwarze Exp $ */ +/* $Id: term_ascii.c,v 1.30 2014/08/14 22:33:10 schwarze Exp $ */ /* * Copyright (c) 2010, 2011 Kristaps Dzonsons * Copyright (c) 2014 Ingo Schwarze @@ -230,32 +230,43 @@ ascii_hspan(const struct termp *p, const struct roffsu double r; /* - * Approximate based on character width. These are generated - * entirely by eyeballing the screen, but appear to be correct. + * Approximate based on character width. + * None of these will be actually correct given that an inch on + * the screen depends on character size, terminal, etc., etc. */ - switch (su->unit) { + case SCALE_BU: + r = su->scale * 10.0 / 240.0; + break; case SCALE_CM: - r = su->scale * 4.0; + r = su->scale * 10.0 / 2.54; break; + case SCALE_FS: + r = su->scale * 2730.666; + break; case SCALE_IN: r = su->scale * 10.0; break; + case SCALE_MM: + r = su->scale / 100.0; + break; case SCALE_PC: - r = (su->scale * 10.0) / 6.0; + r = su->scale * 10.0 / 6.0; break; case SCALE_PT: - r = (su->scale * 10.0) / 72.0; + r = su->scale * 10.0 / 72.0; break; - case SCALE_MM: - r = su->scale / 1000.0; - break; case SCALE_VS: r = su->scale * 2.0 - 1.0; break; - default: + case SCALE_EN: + /* FALLTHROUGH */ + case SCALE_EM: r = su->scale; break; + case SCALE_MAX: + abort(); + /* NOTREACHED */ } return(r);