diff options
author | John MacFarlane <jgm@berkeley.edu> | 2011-01-30 17:01:50 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2011-01-30 17:01:50 -0800 |
commit | cf0a84323921c6579d1537018cce68e35bf52852 (patch) | |
tree | 8f4fa705ed3e1217454be793c10743f23ac8f11d /src/Text | |
parent | 9e57e93243e4713ec601e8a748eabce1e54b7790 (diff) | |
download | pandoc-cf0a84323921c6579d1537018cce68e35bf52852.tar.gz |
UTF8: Use #if instead of #ifdef.
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/UTF8.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/UTF8.hs b/src/Text/Pandoc/UTF8.hs index 6d9ac1d1a..a77f92cdc 100644 --- a/src/Text/Pandoc/UTF8.hs +++ b/src/Text/Pandoc/UTF8.hs @@ -39,7 +39,7 @@ module Text.Pandoc.UTF8 ( readFile where -#ifdef MIN_VERSION_base(4,2,0) +#if MIN_VERSION_base(4,2,0) import System.IO hiding (readFile, writeFile, getContents, putStr, putStrLn, hPutStr, hPutStrLn, hGetContents) |