diff options
author | Jesse Rosenthal <jrosenthal@jhu.edu> | 2016-08-29 21:28:13 -0400 |
---|---|---|
committer | Jesse Rosenthal <jrosenthal@jhu.edu> | 2016-08-29 21:34:26 -0400 |
commit | 773adc780420a71b13988d16681a01116cba0f18 (patch) | |
tree | e66bf586fb3fcdbc4fcb2b3c92fcf0349f6373e7 /src/Text/Pandoc | |
parent | 7ae9621a874f945e3b5e249129384d8bb87850c6 (diff) | |
download | pandoc-773adc780420a71b13988d16681a01116cba0f18.tar.gz |
Docx reader: Import traverse for ghc 7.8
The GHC 7.8 build was erroring without it.
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Readers/Docx.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/Docx.hs b/src/Text/Pandoc/Readers/Docx.hs index 7ef3e7554..9cc5353e7 100644 --- a/src/Text/Pandoc/Readers/Docx.hs +++ b/src/Text/Pandoc/Readers/Docx.hs @@ -93,6 +93,7 @@ import Control.Monad.Reader import Control.Monad.State import Data.Sequence (ViewL(..), viewl) import qualified Data.Sequence as Seq (null) +import Data.Traversable (traverse) import Text.Pandoc.Error import Text.Pandoc.Compat.Except |