From: sof Date: Fri, 5 Mar 1999 09:38:43 +0000 (+0000) Subject: [project @ 1999-03-05 09:38:43 by sof] X-Git-Tag: Approximately_9120_patches~6417 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=2ed3e0f4e0b638576ca641fd969b644a70784295;p=ghc-hetmet.git [project @ 1999-03-05 09:38:43 by sof] Remove the Show instance for (a->b). It will not be missed.. --- diff --git a/ghc/lib/std/PrelBase.lhs b/ghc/lib/std/PrelBase.lhs index 2d83101..a4cbf63 100644 --- a/ghc/lib/std/PrelBase.lhs +++ b/ghc/lib/std/PrelBase.lhs @@ -607,11 +607,6 @@ instance Eq Integer where %********************************************************* \begin{code} -instance Show (a -> b) where - showsPrec _ _ = showString "<>" - showList ls = showList__ (showsPrec 0) ls - - -- identity function id :: a -> a id x = x