Skip to content

Commit

Permalink
Fix carriage return parser issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
colah committed Sep 21, 2012
1 parent 37fa230 commit 76aa908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Graphics/Implicit/ExtOpenScad/Expressions.hs
Expand Up @@ -20,7 +20,7 @@ errorAsAppropriate name a b = OError

-- white space, including tabs, newlines and comments
genSpace = many $
oneOf " \t\n"
oneOf " \t\n\r"
<|> (try $ do
string "//"
many ( noneOf "\n")
Expand Down

0 comments on commit 76aa908

Please sign in to comment.