changeset 7762 | d2fd8040534f |
parent 7429 | fcf13e40d6b6 |
child 7957 | 497ec84e0c21 |
child 8138 | cfb228baa598 |
--- a/tools/PascalPreprocessor.hs Tue Oct 16 13:41:23 2012 -0400 +++ b/tools/PascalPreprocessor.hs Tue Oct 16 22:35:01 2012 +0400 @@ -121,7 +121,7 @@ try $ string "DEFINE" spaces i <- identifier - d <- ((string ":=" >> return ())<|> spaces) >> many (noneOf "}") + d <- ((string ":=" >> return ()) <|> spaces) >> many (noneOf "}") char '}' updateState $ \(m, b) -> (if (and b) && (head i /= '_') then Map.insert i d m else m, b) return ""