diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-01-27 12:27:24 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-01-27 12:27:24 -0800 |
commit | 2932ac8574e79d5d5b3b65ed81b0125d4d146f12 (patch) | |
tree | 86e874466ab30323ac72911d7b838421e6439c22 /src/Text/Pandoc/App | |
parent | 9894d05fe3fd239247f755c60dc22247360be958 (diff) | |
download | pandoc-2932ac8574e79d5d5b3b65ed81b0125d4d146f12.tar.gz |
Add isPrefixOf to imports.
Diffstat (limited to 'src/Text/Pandoc/App')
-rw-r--r-- | src/Text/Pandoc/App/CommandLineOptions.hs | 2 |
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) |