diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-06-25 19:50:23 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-06-25 19:50:23 +0000 |
commit | 730c5a1572228d1c4a1ef49a9748be04a119c1e8 (patch) | |
tree | e343184e297e9f8bc244f46377645cfb9148b125 /out.c | |
parent | 955a3b0eddc8e1d4b67024b12e652eac84dbcdec (diff) | |
download | mandoc-730c5a1572228d1c4a1ef49a9748be04a119c1e8.tar.gz |
Remove "pt" from struct roffsu, as CSS (the only reason it was there) is
unclear about which units accept floats/integers, which leads me to
assume that it handles either and rounds as appropriate.
Diffstat (limited to 'out.c')
-rw-r--r-- | out.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -139,8 +139,6 @@ a2roffsu(const char *src, struct roffsu *dst, enum roffscale def) if ((dst->scale = atof(buf)) < 0) dst->scale = 0; dst->unit = unit; - dst->pt = hasd; - return(1); } |