revert my pas2c modification sdl2transition
authorsheepluva
Fri, 13 Nov 2015 20:21:44 +0100
branchsdl2transition
changeset 11370 210f12d36822
parent 11369 ea5edb4e5245
child 11371 59db509c20c6
revert my pas2c modification
tools/pas2c/PascalParser.hs
--- a/tools/pas2c/PascalParser.hs	Wed Nov 11 23:49:23 2015 +0100
+++ b/tools/pas2c/PascalParser.hs	Fri Nov 13 20:21:44 2015 +0100
@@ -198,7 +198,7 @@
         char' ';'
         comments
         return u
-    sequenceDecl = (parens pas) $ (commaSep pas) (iD >>= \i -> optional (spaces >> string' ":=" >> spaces >> integer pas) >> return i)
+    sequenceDecl = (parens pas) $ (commaSep pas) (iD >>= \i -> optional (spaces >> char' '=' >> spaces >> integer pas) >> return i)
     functionType = do
         fp <- try (string "function") <|> try (string "procedure")
         comments