cosmetic change.

This commit is contained in:
Kazu Yamamoto 2010-04-30 18:09:26 +09:00
parent cea624aece
commit c047b9523b

View File

@ -21,10 +21,6 @@ checkSyntax _ file = unlines <$> check file
----------------------------------------------------------------
-- I don't know why, but parseDynamicFlags must be used.
cmdOptions :: [Located String]
cmdOptions = map noLoc ["-Wall","-fno-warn-unused-do-bind"]
check :: String -> IO [String]
check fileName = ghandle ignore $ runGhc (Just libdir) $ do
ref <- liftIO $ newIORef []
@ -44,6 +40,10 @@ check fileName = ghandle ignore $ runGhc (Just libdir) $ do
ignore :: SomeException -> IO [String]
ignore _ = return []
-- I don't know why, but parseDynamicFlags must be used.
cmdOptions :: [Located String]
cmdOptions = map noLoc ["-Wall","-fno-warn-unused-do-bind"]
----------------------------------------------------------------
refLogger :: IORef [String] -> WarnErrLogger