diff options
author | Jesse Rosenthal <jrosenthal@jhu.edu> | 2016-09-03 15:23:32 -0400 |
---|---|---|
committer | Jesse Rosenthal <jrosenthal@jhu.edu> | 2016-09-03 15:23:32 -0400 |
commit | 09d96bb88492a8a26a7ed22c40b044b1a63d520d (patch) | |
tree | 5cf4599d389e152676db1b9467ded4a1aa0c3952 | |
parent | 3f82471355286d33f2d73329c29a51c47bf76ad7 (diff) | |
download | pandoc-09d96bb88492a8a26a7ed22c40b044b1a63d520d.tar.gz |
Remove unnecessary CPP in custom Prelude.
We don't have to worry about base < 4.7.
-rw-r--r-- | prelude/Prelude.hs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/prelude/Prelude.hs b/prelude/Prelude.hs index 50e86a7b9..34f133d83 100644 --- a/prelude/Prelude.hs +++ b/prelude/Prelude.hs @@ -19,12 +19,8 @@ where #if MIN_VERSION_base(4,8,0) import "base" Prelude as P -#elif MIN_VERSION_base(4,6,0) -import "base" Prelude as P -import Control.Applicative -import Data.Monoid #else -import "base" Prelude as P hiding (catch) +import "base" Prelude as P import Control.Applicative import Data.Monoid #endif |