Skip to content

Commit

Permalink
- Allow \r in the lexer
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@8351 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Mar 24, 2011
1 parent 7792d25 commit 5774136
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Parser/BaseModelica_Lexer.g
Expand Up @@ -260,7 +260,7 @@ ML_COMMENT
;
fragment
NL: '\r\n' | '\n';
NL: '\r\n' | '\n' | '\r';
/* OpenModelica extensions */
CODE : 'Code' | '$Code';
Expand Down

0 comments on commit 5774136

Please sign in to comment.