diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-10-27 21:26:16 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-10-27 21:26:16 -0700 |
commit | f3e901c29d9a1ca82a1b35ea13df4e673e753443 (patch) | |
tree | d2bf3fd1861cf1abe4282ba73b1ee6673fc9aa86 | |
parent | be7a29e9b95bb8ffa77c3ffeb49e7cf6ba164ed4 (diff) | |
download | pandoc-f3e901c29d9a1ca82a1b35ea13df4e673e753443.tar.gz |
hlint suggestions.
-rw-r--r-- | src/Text/Pandoc/App.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/App.hs b/src/Text/Pandoc/App.hs index e965771b7..a80c6ac44 100644 --- a/src/Text/Pandoc/App.hs +++ b/src/Text/Pandoc/App.hs @@ -113,7 +113,7 @@ parseOptions options' defaults = do getOpt' Permute options' rawArgs let unknownOptionErrors = - foldr (handleUnrecognizedOption . (takeWhile (/= '='))) [] + foldr (handleUnrecognizedOption . takeWhile (/= '=')) [] unrecognizedOpts unless (null errors && null unknownOptionErrors) $ |