revert hlint change

broke a test
This commit is contained in:
Joey Hess 2012-02-20 15:28:57 -04:00
parent 6c0155efb7
commit 7e17151e69

View file

@ -79,7 +79,7 @@ configUnEscape = unescape
num = takeWhile isNumber s
r = drop (length num) s
rest = drop 1 r
ok = not (null num) && ":" `isPrefixOf` r
ok = not (null num) && ";" `isPrefixOf` r
{- for quickcheck -}
prop_idempotent_configEscape :: String -> Bool