From: sof Date: Mon, 24 Aug 1998 11:05:37 +0000 (+0000) Subject: [project @ 1998-08-24 11:05:37 by sof] X-Git-Tag: Approx_2487_patches~295 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=69721cdc7d7e4d3b3b47b22be3476bd0e70adc67;p=ghc-hetmet.git [project @ 1998-08-24 11:05:37 by sof] Since we're unable to deal with seq'ing over function values, comment out the Eval instance for (->) --- diff --git a/ghc/lib/std/PrelBase.lhs b/ghc/lib/std/PrelBase.lhs index ba5741b..f256122 100644 --- a/ghc/lib/std/PrelBase.lhs +++ b/ghc/lib/std/PrelBase.lhs @@ -674,7 +674,10 @@ data Integer = J# Int# Int# ByteArray# %********************************************************* \begin{code} -instance Eval (a -> b) +-- The current implementation of seq# cannot handle function types, +-- so we leave this instance out rather than make false promises. +-- +-- instance Eval (a -> b) instance Show (a -> b) where showsPrec p f = showString "<>"