diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2018-03-12 15:49:31 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2018-03-12 15:49:31 +0300 |
commit | f7226a57afe052d1efc8a148b810937067b0bc4d (patch) | |
tree | e312ffea94c9d7bde6432b662237e1d62bc0efa4 | |
parent | 3ee45a735727e20e54179c04fe819ca38c54b315 (diff) | |
download | pandoc-f7226a57afe052d1efc8a148b810937067b0bc4d.tar.gz |
Docx reader: remove unused docxWarnings
-rw-r--r-- | src/Text/Pandoc/Readers/Docx.hs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Readers/Docx.hs b/src/Text/Pandoc/Readers/Docx.hs index e58b0a905..582b4be13 100644 --- a/src/Text/Pandoc/Readers/Docx.hs +++ b/src/Text/Pandoc/Readers/Docx.hs @@ -122,7 +122,6 @@ data DState = DState { docxAnchorMap :: M.Map String String , docxImmedPrevAnchor :: Maybe String , docxMediaBag :: MediaBag , docxDropCap :: Inlines - , docxWarnings :: [String] -- keep track of (numId, lvl) values for -- restarting , docxListState :: M.Map (String, String) Integer @@ -135,7 +134,6 @@ instance Default DState where , docxImmedPrevAnchor = Nothing , docxMediaBag = mempty , docxDropCap = mempty - , docxWarnings = [] , docxListState = M.empty , docxPrevPara = mempty } |