[project @ 2003-07-31 10:48:50 by panne]
[ghc-base.git] / Text / ParserCombinators / Parsec / Char.hs
index 5f06136..05f3ad0 100644 (file)
@@ -23,6 +23,7 @@ module Text.ParserCombinators.Parsec.Char
                   , satisfy
                   ) where
 
+import Prelude
 import Data.Char
 import Text.ParserCombinators.Parsec.Pos( updatePosChar, updatePosString )
 import Text.ParserCombinators.Parsec.Prim
@@ -64,4 +65,4 @@ satisfy f           = tokenPrim (\c -> show [c])
                                 (\c -> if f c then Just c else Nothing)
 
 string :: String -> CharParser st String
-string s            = tokens show updatePosString s
\ No newline at end of file
+string s            = tokens show updatePosString s