[project @ 1999-03-05 09:38:43 by sof]
authorsof <unknown>
Fri, 5 Mar 1999 09:38:43 +0000 (09:38 +0000)
committersof <unknown>
Fri, 5 Mar 1999 09:38:43 +0000 (09:38 +0000)
Remove the Show instance for (a->b). It will not be missed..

ghc/lib/std/PrelBase.lhs

index 2d83101..a4cbf63 100644 (file)
@@ -607,11 +607,6 @@ instance  Eq Integer  where
 %*********************************************************
 
 \begin{code}
-instance  Show (a -> b)  where
-    showsPrec _ _  =  showString "<<function>>"
-    showList ls           = showList__ (showsPrec 0) ls
-
-
 -- identity function
 id                     :: a -> a
 id x                   =  x