=================================================================== RCS file: /cvs/mandoc/term_ascii.c,v retrieving revision 1.26 retrieving revision 1.30 diff -u -p -r1.26 -r1.30 --- mandoc/term_ascii.c 2014/07/27 21:52:16 1.26 +++ mandoc/term_ascii.c 2014/08/14 22:33:10 1.30 @@ -1,4 +1,4 @@ -/* $Id: term_ascii.c,v 1.26 2014/07/27 21:52:16 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 @@ -15,21 +15,19 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#ifdef HAVE_CONFIG_H #include "config.h" -#endif #include #ifdef USE_WCHAR -# include +#include #endif #include #include #include #include #ifdef USE_WCHAR -# include +#include #endif #include "mandoc.h" @@ -232,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 = 4 * su->scale; + r = su->scale * 10.0 / 2.54; break; + case SCALE_FS: + r = su->scale * 2730.666; + break; case SCALE_IN: - r = 10 * su->scale; + r = su->scale * 10.0; break; + case SCALE_MM: + r = su->scale / 100.0; + break; case SCALE_PC: - r = (10 * su->scale) / 6; + r = su->scale * 10.0 / 6.0; break; case SCALE_PT: - r = (10 * su->scale) / 72; + r = su->scale * 10.0 / 72.0; break; - case SCALE_MM: - r = su->scale / 1000; - break; case SCALE_VS: - r = su->scale * 2 - 1; + 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);