From: simonmar Date: Mon, 12 May 2003 14:12:52 +0000 (+0000) Subject: [project @ 2003-05-12 14:12:52 by simonmar] X-Git-Tag: Approx_11550_changesets_converted~919 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=762cdf360afd7f02ddf2fd9b3e50f57cafa5c523 [project @ 2003-05-12 14:12:52 by simonmar] Another bugfix to tryM, this time for GHC 5.00--5.04 --- diff --git a/ghc/compiler/typecheck/TcRnTypes.lhs b/ghc/compiler/typecheck/TcRnTypes.lhs index f61115a..5f032a5 100644 --- a/ghc/compiler/typecheck/TcRnTypes.lhs +++ b/ghc/compiler/typecheck/TcRnTypes.lhs @@ -164,7 +164,7 @@ tryM (TcRn thing) = TcRn (\ env -> tryJust tc_errors (thing env)) #if __GLASGOW_HASKELL__ > 504 || __GLASGOW_HASKELL__ < 500 tc_errors e@(IOException ioe) | isUserError ioe = Just e #else - tc_errors e | isUserError e = Just e + tc_errors e@(IOException ioe) | isUserError e = Just e #endif tc_errors _other = Nothing -- type checker failures show up as UserErrors only