From: simonpj@microsoft.com Date: Thu, 21 Jun 2007 13:16:25 +0000 (+0000) Subject: FIX BUILD: add missing prime! X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=13c7a6e61f666c21ce57354f4bcd4e1e88c568c2;p=ghc-hetmet.git FIX BUILD: add missing prime! --- diff --git a/compiler/typecheck/TcHsSyn.lhs b/compiler/typecheck/TcHsSyn.lhs index acb3d2b..23cc0fe 100644 --- a/compiler/typecheck/TcHsSyn.lhs +++ b/compiler/typecheck/TcHsSyn.lhs @@ -642,7 +642,7 @@ zonkStmt env (BindStmt pat expr bind_op fail_op) zonkRecFields :: ZonkEnv -> HsRecordBinds TcId -> TcM (HsRecordBinds TcId) zonkRecFields env (HsRecFields flds dd) = do { flds' <- mappM zonk_rbind flds - ; return (HsRecFields flds dd) } + ; return (HsRecFields flds' dd) } where zonk_rbind fld = do { new_expr <- zonkLExpr env (hsRecFieldArg fld)