IsString is GHC-only (so why is it in the Prelude?)
authorRoss Paterson <ross@soi.city.ac.uk>
Tue, 23 Jan 2007 18:30:07 +0000 (18:30 +0000)
committerRoss Paterson <ross@soi.city.ac.uk>
Tue, 23 Jan 2007 18:30:07 +0000 (18:30 +0000)
Prelude.hs

index cae9c25..7126561 100644 (file)
@@ -80,8 +80,10 @@ module Prelude (
     Functor(fmap),
     mapM, mapM_, sequence, sequence_, (=<<),
 
+#ifdef __GLASGOW_HASKELL__
     -- ** String class
     IsString(fromString),
+#endif
 
     -- ** Miscellaneous functions
     id, const, (.), flip, ($), until,