From b22c13749df09e801e302a9d38e494dd9b04d784 Mon Sep 17 00:00:00 2001 From: ralf Date: Wed, 30 Jul 2003 08:13:16 +0000 Subject: [PATCH] [project @ 2003-07-30 08:13:16 by ralf] Rolled back to newtype now that the compiler does not panic anymore for the module Data/Generics/Text.hs. --- Text/ParserCombinators/ReadP.hs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Text/ParserCombinators/ReadP.hs b/Text/ParserCombinators/ReadP.hs index f478230..c05b983 100644 --- a/Text/ParserCombinators/ReadP.hs +++ b/Text/ParserCombinators/ReadP.hs @@ -120,12 +120,7 @@ instance MonadPlus P where -- --------------------------------------------------------------------------- -- The ReadP type --- newtype temporarily turned into data --- until compiler bug as found on 26 July 2003 is fixed; --- contact SPJ or ralf@cwi.nl --- -data ReadP a = R (forall b . (a -> P b) -> P b) --- newtype ReadP a = R (forall b . (a -> P b) -> P b) +newtype ReadP a = R (forall b . (a -> P b) -> P b) -- Functor, Monad, MonadPlus -- 1.7.10.4