Preprocessor: fixed bug with native MATLAB statements (for example something

like "x = { 'foo' 'bar' };" was incorrectly passed on to MATLAB)
issue#70
Sébastien Villemot 2011-06-09 15:15:16 +02:00
parent 6e015f9bd4
commit 786d89b0e2
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ string eofbuff;
}
/* spaces, tabs and carriage returns are ignored */
<*>[ \t\r\f]+ { yylloc->step(); }
<INITIAL,DYNARE_STATEMENT,DYNARE_BLOCK,COMMENT,LINE1,LINE2,LINE3>[ \t\r\f]+ { yylloc->step(); }
<INITIAL,DYNARE_STATEMENT,DYNARE_BLOCK,COMMENT,LINE1,LINE2,LINE3>[\n]+ { yylloc->step(); }
/* Comments */