Fix CodingStyle#Warnings URLs
[ghc-hetmet.git] / compiler / typecheck / TcHsSyn.lhs
index acb3d2b..4c76b42 100644 (file)
@@ -9,6 +9,13 @@ This module is an extension of @HsSyn@ syntax, for use in the type
 checker.
 
 \begin{code}
+{-# OPTIONS -w #-}
+-- The above warning supression flag is a temporary kludge.
+-- While working on this module you are encouraged to remove it and fix
+-- any warnings in the module. See
+--     http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings
+-- for details
+
 module TcHsSyn (
        mkHsConApp, mkHsDictLet, mkHsApp,
        hsLitType, hsLPatType, hsPatType, 
@@ -642,7 +649,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)