diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-06-30 12:30:36 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-06-30 12:30:36 +0000 |
commit | 1c345c57d0409711abb1ac63246e87a2cb57326f (patch) | |
tree | f7f075ebf1e7cb725e0d9b9cdd61665b708b4bf4 /term_ps.c | |
parent | 38931802fd8955ea9a7423f1a83b5578eaa9314e (diff) | |
download | mandoc-1c345c57d0409711abb1ac63246e87a2cb57326f.tar.gz |
Pushed normalisation of scaling units into term_hspan().
Diffstat (limited to 'term_ps.c')
-rw-r--r-- | term_ps.c | 12 |
1 files changed, 3 insertions, 9 deletions
@@ -359,7 +359,7 @@ static const struct font fonts[TERMFONT__MAX] = { } while (/* CONSTCOND */ 0) -static size_t ps_hspan(const struct termp *, +static double ps_hspan(const struct termp *, const struct roffsu *); static size_t ps_width(const struct termp *, char); static void ps_advance(struct termp *, size_t); @@ -828,7 +828,7 @@ ps_width(const struct termp *p, char c) } -static size_t +static double ps_hspan(const struct termp *p, const struct roffsu *su) { double r; @@ -871,12 +871,6 @@ ps_hspan(const struct termp *p, const struct roffsu *su) break; } - /* Explicitly disallow negative values. */ - - if (r < 0.0) - r = 0.0; - - return((size_t)/* LINTED */ - r); + return(r); } |