X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Text%2FParserCombinators%2FParsec%2FChar.hs;h=05f3ad09e184dbec815acc03b59647f1223f057d;hb=b21d4af465d575d0072ddf97e178e0e9545f77ba;hp=5f06136115ac80e82040f07cb3a8abc93b9f21c3;hpb=792c0b584d78fdab6834553b79f9b5d445ae80e6;p=ghc-base.git diff --git a/Text/ParserCombinators/Parsec/Char.hs b/Text/ParserCombinators/Parsec/Char.hs index 5f06136..05f3ad0 100644 --- a/Text/ParserCombinators/Parsec/Char.hs +++ b/Text/ParserCombinators/Parsec/Char.hs @@ -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