diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2018-03-18 10:46:28 -0700 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2018-03-18 10:46:28 -0700 |
| commit | 7e389cb3dbdc11126b9bdb6a7741a65e5a94a43e (patch) | |
| tree | 0e3ca00745cc0248d803c31e748889fcd02460fa /src/Text/Pandoc/Data.hs | |
| parent | daf731a001ee75ba3e09c8337278fe167ec347ae (diff) | |
Use NoImplicitPrelude and explicitly import Prelude.
This seems to be necessary if we are to use our custom Prelude
with ghci.
Closes #4464.
Diffstat (limited to 'src/Text/Pandoc/Data.hs')
| -rw-r--r-- | src/Text/Pandoc/Data.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Data.hs b/src/Text/Pandoc/Data.hs index af0e4504f..2cf0d3f81 100644 --- a/src/Text/Pandoc/Data.hs +++ b/src/Text/Pandoc/Data.hs @@ -1,7 +1,9 @@ +{-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE TemplateHaskell #-} module Text.Pandoc.Data (dataFiles) where +import Prelude import qualified Data.ByteString as B import Data.FileEmbed import System.FilePath (splitDirectories) |
