diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2013-04-09 19:56:43 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-04-09 19:56:43 -0700 |
commit | da13ad89cea34f68ef059783d49faa20e24d3c80 (patch) | |
tree | 7b8e83d8d2ea63e56f610ad3b2d182eea1cf4b64 /src/Text | |
parent | df1522e1ebe7e6ece9f53d2d69963991cf3f97c0 (diff) | |
download | pandoc-da13ad89cea34f68ef059783d49faa20e24d3c80.tar.gz |
Man writer: use one decimal place for column widths.
This, I hope, will fix test failures on GHC 7.6 due to
(presumably) different rounding or floating point multiplication.
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Writers/Man.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/Man.hs b/src/Text/Pandoc/Writers/Man.hs index d5e44e71a..5541aeb3b 100644 --- a/src/Text/Pandoc/Writers/Man.hs +++ b/src/Text/Pandoc/Writers/Man.hs @@ -187,7 +187,7 @@ blockToMan opts (Table caption alignments widths headers rows) = modify $ \st -> st{ stHasTables = True } let iwidths = if all (== 0) widths then repeat "" - else map (printf "w(%0.2fn)" . (70 *)) widths + else map (printf "w(%0.1fn)" . (70 *)) widths -- 78n default width - 8n indent = 70n let coldescriptions = text $ intercalate " " (zipWith (\align width -> aligncode align ++ width) |