[project @ 2003-07-30 08:13:16 by ralf]
authorralf <unknown>
Wed, 30 Jul 2003 08:13:16 +0000 (08:13 +0000)
committerralf <unknown>
Wed, 30 Jul 2003 08:13:16 +0000 (08:13 +0000)
Rolled back to newtype now that the compiler does not panic anymore
for the module Data/Generics/Text.hs.

Text/ParserCombinators/ReadP.hs

index f478230..c05b983 100644 (file)
@@ -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