]> git.eshelyaron.com Git - emacs.git/commitdiff
Add types to some no-type tokes in js.wy
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 18 Jun 2019 01:04:00 +0000 (03:04 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 18 Jun 2019 09:33:40 +0000 (11:33 +0200)
* admin/grammars/js.wy: Add types to the FALSE, TRUE and QUERY tokens.

Without the types, you'd get the warning

*Warning* default value of <<no-type>> tokens changed to QUERY, was NULL_TOKEN
*Warning* default value of <<no-type>> tokens changed to TRUE, was QUERY
*Warning* default value of <<no-type>> tokens changed to FALSE, was TRUE

I think this should be harmless, and it doesn't seem to break handling
.js files.

admin/grammars/js.wy

index e5a7c9be71f7f2b2a7fe2272ea387648ca34c617..ff048d82e9a28e09103032f0f5de2b27a91e52d3 100644 (file)
 %token <number>      NUMBER
 
 
-%token FALSE
-%token TRUE
-%token QUERY
+%token <false> FALSE
+%token <true> TRUE
+%token <query> QUERY
 
 
 %token NULL_TOKEN