diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2017-07-12 18:14:10 +0300 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-07-12 17:14:10 +0200 |
commit | e0025cf4f18e335917f57814a1854f85ce1b6236 (patch) | |
tree | cc32f7146c98c01bd4312bfd7d354cdc2e3c7a10 /src/Text | |
parent | 050036c036bea4dba65efd033230d552ef637abc (diff) | |
download | pandoc-e0025cf4f18e335917f57814a1854f85ce1b6236.tar.gz |
Remove redundant imports (#3796)
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Readers/LaTeX.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs index cd2c7c7f8..9ec84b3f6 100644 --- a/src/Text/Pandoc/Readers/LaTeX.hs +++ b/src/Text/Pandoc/Readers/LaTeX.hs @@ -66,7 +66,7 @@ import Text.Pandoc.Parsing hiding (many, optional, withRaw, space, (<|>), spaces, blankline) import Text.Pandoc.Shared import Text.Pandoc.Readers.LaTeX.Types (Macro(..), Tok(..), - TokType(..), Line, Column) + TokType(..)) import Text.Pandoc.Walk import Text.Pandoc.Error (PandocError(PandocParsecError, PandocMacroLoop)) |