Wed Jun 16 20:21:42 CEST 1999
- Fixed another typo in preproc.y.
+
+Thu Jun 24 18:06:43 CEST 1999
+
+ - Fixed C comment bug that caused ecpg to not accept quoted quotes.
- Set library version to 3.0.0
- Set ecpg version to 2.6.0
dquote \"
xdstart {dquote}
xdstop {dquote}
+xdcqdq \\\"
xdinside [^"]*
+xdcinside ({xdinside}|{xdcqdq})*
/* Comments
* Ignored by the scanner and parser.
yylval.str = mm_strdup(literal);
return CSTRING;
}
-<xdc>{xdinside} {
+<xdc>{xdcinside} {
if ((llen+yyleng) > (MAX_PARSE_BUFFER - 1))
yyerror("ERROR: quoted string parse buffer exceeded");
memcpy(literal+llen, yytext, yyleng+1);