Skip to content

Commit

Permalink
Fix the same bug in MLKit for a second time - needs to recognize /r a…
Browse files Browse the repository at this point in the history
…s a whitespace character. Having /r be a Whitespace and not just a VWhitespace may be a mistake but I don
  • Loading branch information
robsimmons committed Sep 29, 2011
1 parent 5f668e6 commit c935267
Show file tree
Hide file tree
Showing 2 changed files with 1,713 additions and 771 deletions.
4 changes: 2 additions & 2 deletions src/Parsing/Topdec.lex
Expand Up @@ -67,8 +67,8 @@
);
%arg (arg: UserDeclarations.arg);

WhiteSpace = [\ \t]+;
VWhiteSpace = [\ \t\n\012]+;
WhiteSpace = [\ \t\r]+;
VWhiteSpace = [\ \t\r\n\012]+;
UC = [A-Z];
LC = [a-z];
Letter = {UC} | {LC};
Expand Down

0 comments on commit c935267

Please sign in to comment.