Version 0.10.0 (????-??-??)
---------------------------
+- Made scanner error out in case an ambiguous /* is found.
- Fixed indendation of generated code.
- Added support for DOS line endings.
- Added experimental unicode support.
Version 0.9.10 (2005-09-04)
---------------------------
-- Add -i switch to avoid generating #line information.
+- Added -i switch to avoid generating #line information.
- Fixed bug #1251653 re2c generate some invalid #line on WIN32.
Version 0.9.9 (2005-07-21)
}
-int Scanner::scan(){
+int Scanner::scan()
+{
char *cursor = cur;
uint depth;
else
goto comment; }
"/*" { ++depth;
- goto comment; }
+ fatal("ambiguous /* found");
+ goto comment; }
"\n" { if(cursor == eof) RETURN(0);
tok = pos = cursor; cline++;
goto comment;