aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/App/CommandLineOptions.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-01-27 12:27:24 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2019-01-27 12:27:24 -0800
commit2932ac8574e79d5d5b3b65ed81b0125d4d146f12 (patch)
tree86e874466ab30323ac72911d7b838421e6439c22 /src/Text/Pandoc/App/CommandLineOptions.hs
parent9894d05fe3fd239247f755c60dc22247360be958 (diff)
downloadpandoc-2932ac8574e79d5d5b3b65ed81b0125d4d146f12.tar.gz
Add isPrefixOf to imports.
Diffstat (limited to 'src/Text/Pandoc/App/CommandLineOptions.hs')
-rw-r--r--src/Text/Pandoc/App/CommandLineOptions.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/App/CommandLineOptions.hs b/src/Text/Pandoc/App/CommandLineOptions.hs
index c041e30e4..98316eee6 100644
--- a/src/Text/Pandoc/App/CommandLineOptions.hs
+++ b/src/Text/Pandoc/App/CommandLineOptions.hs
@@ -45,7 +45,7 @@ import Control.Monad.Trans
import Data.Aeson.Encode.Pretty (encodePretty', Config(..), keyOrder,
defConfig, Indent(..), NumberFormat(..))
import Data.Char (toLower, toUpper)
-import Data.List (intercalate, sort)
+import Data.List (intercalate, sort, isPrefixOf)
import Data.Maybe (fromMaybe)
import Skylighting (Style, Syntax (..), defaultSyntaxMap, parseTheme,
pygments)