From: simonmar Date: Mon, 10 Apr 2000 13:31:00 +0000 (+0000) Subject: [project @ 2000-04-10 13:31:00 by simonmar] X-Git-Tag: Approximately_9120_patches~4761 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=9155d5eee736d8f2723a306f2ef36d0d895af598;p=ghc-hetmet.git [project @ 2000-04-10 13:31:00 by simonmar] change Text to Show, several years too late --- diff --git a/ghc/compiler/basicTypes/Module.lhs b/ghc/compiler/basicTypes/Module.lhs index 9fcf38c..9ce8aa9 100644 --- a/ghc/compiler/basicTypes/Module.lhs +++ b/ghc/compiler/basicTypes/Module.lhs @@ -85,7 +85,7 @@ data DllFlavour = NotDll -- Ordinary module dll = Dll notDll = NotDll -instance Text DllFlavour where -- Just used in debug prints of lex tokens +instance Show DllFlavour where -- Just used in debug prints of lex tokens showsPrec n NotDll s = s showsPrec n Dll s = "dll " ++ s \end{code}