From 9155d5eee736d8f2723a306f2ef36d0d895af598 Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 10 Apr 2000 13:31:00 +0000 Subject: [PATCH] [project @ 2000-04-10 13:31:00 by simonmar] change Text to Show, several years too late --- ghc/compiler/basicTypes/Module.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} -- 1.7.10.4