Removed single quoted string support.

This commit is contained in:
Svend Sorensen
2005-03-29 02:20:00 +00:00
parent 7530a4f581
commit d6d9aca893
2 changed files with 0 additions and 2 deletions

View File

@@ -25,7 +25,6 @@ nonws [^ \t\r\n]
%%
\'([^\']|\\\')*\' |
\"([^\"]|\\\")*\" {
yylval.sval = strdup(yytext + 1);
yylval.sval[strlen(yylval.sval) - 1] = '\0';

View File

@@ -25,7 +25,6 @@ nonws [^ \t\r\n]
%%
\'([^\']|\\\')*\' |
\"([^\"]|\\\")*\" {
yylval.sval = strdup(yytext + 1);
yylval.sval[strlen(yylval.sval) - 1] = '\0';