diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2021-02-14 15:49:12 +0100 |
---|---|---|
committer | Albert Krewinkel <albert@zeitkraut.de> | 2021-02-14 15:49:12 +0100 |
commit | 8621ed600af6bdc984fe2095dac400887c3cda78 (patch) | |
tree | 3cf4e0e4d6a0de130d9c0f7bc585247710da55f2 /src | |
parent | 1942dc561118a72fbbd78c1ee8d8784f47b88f4c (diff) | |
download | pandoc-8621ed600af6bdc984fe2095dac400887c3cda78.tar.gz |
T.P.Error: remove unused variables
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Error.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Error.hs b/src/Text/Pandoc/Error.hs index 50ad3c0e3..94c013cdb 100644 --- a/src/Text/Pandoc/Error.hs +++ b/src/Text/Pandoc/Error.hs @@ -176,11 +176,11 @@ handleError (Left e) = PandocFilterError{} -> 83 PandocLuaError{} -> 84 PandocCouldNotFindDataFileError{} -> 97 - PandocResourceNotFound fn -> 99 + PandocResourceNotFound{} -> 99 PandocTemplateError{} -> 5 PandocAppError{} -> 4 PandocEpubSubdirectoryError{} -> 31 - PandocMacroLoop s -> 91 + PandocMacroLoop{} -> 91 PandocUTF8DecodingError{} -> 92 PandocIpynbDecodingError{} -> 93 PandocUnknownReaderError{} -> 21 |