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 ) where
import System.Eval.Haskell {-all-} import System.Eval.Haskell {-all-}

View File

@ -93,4 +93,3 @@ mkUniqueWith wrapper src mods = do
-- --
cleanup :: String -> String -> IO () cleanup :: String -> String -> IO ()
cleanup a b = mapM_ removeFile [a, b, replaceSuffix b ".hi"] 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 -- [@NAME@] hs-plugins library : compile and load Haskell code at runtime
-- --

View File

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

View File

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