diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-05-27 17:02:23 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-05-27 17:02:23 -0400 |
commit | d7a275122be10db6cf2f2877a5f15659177684ee (patch) | |
tree | a2e4dfcb39e06c1cf648eec9b8700417ef1fb45d /Build | |
parent | 815351c6e07081c997e0be25bc1895b4d1757bc6 (diff) |
avoid unused variable
Diffstat (limited to 'Build')
-rw-r--r-- | Build/EvilSplicer.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/EvilSplicer.hs b/Build/EvilSplicer.hs index 111a61c6b..9734b7411 100644 --- a/Build/EvilSplicer.hs +++ b/Build/EvilSplicer.hs @@ -616,7 +616,7 @@ mangleCode = flip_colon let_do = parsecAndReplace $ do void $ string "= do { let " x <- many $ noneOf "=\r\n" - ws <- many1 $ oneOf " \t\r\n" + _ <- many1 $ oneOf " \t\r\n" void $ string "= " return $ "= do { " ++ x ++ " <- return $ " |