Remove an unused rule in the lexer

pull/768/head
John Shahid 2014-08-13 15:13:34 -04:00
parent bc8b068106
commit 335dec7ac5
1 changed files with 0 additions and 14 deletions

View File

@ -122,20 +122,6 @@ true|false { yylval->string = strdup(yy
[a-zA-Z0-9_][a-zA-Z0-9._-]* { yylval->string = strdup(yytext); return TABLE_NAME; }
\" { BEGIN(IN_TABLE_NAME); yylval->string=calloc(1, sizeof(char)); }
<IN_TABLE_NAME>\\\" {
yylval->string = realloc(yylval->string, strlen(yylval->string) + 1);
strcat(yylval->string, "\"");
}
<IN_TABLE_NAME>\" {
BEGIN(INITIAL);
return TABLE_NAME;
}
<IN_TABLE_NAME>[^\\"]* {
yylval->string=realloc(yylval->string, strlen(yylval->string) + strlen(yytext) + 1);
strcat(yylval->string, yytext);
}
[:\[a-zA-Z0-9_][:\[\]a-zA-Z0-9._-]* { yylval->string = strdup(yytext); return INTO_NAME; }
\'[^\']*\' {