diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/parse.y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/parse.y b/src/parse.y index 22931b37d..0943f58d4 100644 --- a/src/parse.y +++ b/src/parse.y @@ -14,7 +14,7 @@ ** the parser. Lemon will also generate a header file containing ** numeric codes for all of the tokens. ** -** @(#) $Id: parse.y,v 1.102 2003/09/27 13:39:39 drh Exp $ +** @(#) $Id: parse.y,v 1.103 2003/09/30 01:54:14 drh Exp $ */ %token_prefix TK_ %token_type {Token} @@ -125,10 +125,10 @@ id(A) ::= ID(X). {A = X;} // fallback to ID if they will not parse as their original value. // This obviates the need for the "id" nonterminal. // -%fallback ID +%fallback ID ABORT AFTER ASC ATTACH BEFORE BEGIN CASCADE CLUSTER CONFLICT COPY DATABASE DEFERRED DELIMITERS DESC DETACH EACH END EXPLAIN FAIL FOR - IGNORE IMMEDIATE INITIALLY INSTEAD MATCH KEY + GLOB IGNORE IMMEDIATE INITIALLY INSTEAD LIKE MATCH KEY OF OFFSET PRAGMA RAISE REPLACE RESTRICT ROW STATEMENT TEMP TRIGGER VACUUM VIEW. |