summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/UTF8.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2011-01-30 17:01:50 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2011-01-30 17:01:50 -0800
commitcf0a84323921c6579d1537018cce68e35bf52852 (patch)
tree8f4fa705ed3e1217454be793c10743f23ac8f11d /src/Text/Pandoc/UTF8.hs
parent9e57e93243e4713ec601e8a748eabce1e54b7790 (diff)
UTF8: Use #if instead of #ifdef.
Diffstat (limited to 'src/Text/Pandoc/UTF8.hs')
-rw-r--r--src/Text/Pandoc/UTF8.hs2
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)