convert tabs to spaces. strip trailing whitespace.

This commit is contained in:
Jeremy Shaw 2015-10-09 19:35:06 -05:00
parent da0b010b33
commit 7c50a8cb6c
11 changed files with 129 additions and 134 deletions

View File

@ -22,4 +22,3 @@ module System.Eval (
) where
import System.Eval.Haskell {-all-}

View File

@ -93,4 +93,3 @@ mkUniqueWith wrapper src mods = do
--
cleanup :: String -> String -> IO ()
cleanup a b = mapM_ removeFile [a, b, replaceSuffix b ".hi"]

View File

@ -34,4 +34,3 @@ import System.Plugins.Load {-all-}
--
-- [@NAME@] hs-plugins library : compile and load Haskell code at runtime
--

View File

@ -446,4 +446,3 @@ readFile' f = do
length s `seq` return ()
hClose h
return s

View File

@ -505,4 +505,3 @@ isSublistOf _ [] = False
isSublistOf x y@(_:ys)
| isPrefixOf x y = True
| otherwise = isSublistOf x ys