From 13c7a6e61f666c21ce57354f4bcd4e1e88c568c2 Mon Sep 17 00:00:00 2001 From: "simonpj@microsoft.com" Date: Thu, 21 Jun 2007 13:16:25 +0000 Subject: [PATCH] FIX BUILD: add missing prime! --- compiler/typecheck/TcHsSyn.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 1.7.10.4