From: Manuel M T Chakravarty Date: Wed, 20 Sep 2006 18:48:59 +0000 (+0000) Subject: Fix category of representation tycon X-Git-Tag: After_FC_branch_merge~12 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=5043f5905a26ba8a2eb65cb5283abf41db87528c Fix category of representation tycon Mon Sep 18 19:48:00 EDT 2006 Manuel M T Chakravarty * Fix category of representation tycon Mon Sep 11 16:18:51 EDT 2006 Manuel M T Chakravarty * Fix category of representation tycon --- diff --git a/compiler/basicTypes/OccName.lhs b/compiler/basicTypes/OccName.lhs index 1440525..cae76a6 100644 --- a/compiler/basicTypes/OccName.lhs +++ b/compiler/basicTypes/OccName.lhs @@ -487,7 +487,7 @@ mkInstTyTcOcc :: Int -- Index -> OccName -- Family name (e.g. "Map") -> OccName -- Nice unique version (":R23Map") mkInstTyTcOcc index occ - = mk_deriv varName (":R" ++ show index) (occNameString occ) + = mk_deriv tcName (":R" ++ show index) (occNameString occ) \end{code} \begin{code}