aboutsummaryrefslogtreecommitdiffstats
path: root/lex.c.blt
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-02 23:08:26 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-02 23:08:26 +0000
commit0d45cc74f82f68e4f5e8e3946627f1e8853dba92 (patch)
tree91ab17c496a1c303478997817bb01521e9acf922 /lex.c.blt
parentefefdc3860e93d5f60e09ef64222c8cd747103b4 (diff)
downloadruby-0d45cc74f82f68e4f5e8e3946627f1e8853dba92.tar.gz
keywords: make name singed
* defs/keywords (kwtable::name): turn into singed int, as gperf fills invalid slots with -1. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52429 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lex.c.blt')
-rw-r--r--lex.c.blt2
1 files changed, 1 insertions, 1 deletions
diff --git a/lex.c.blt b/lex.c.blt
index 5742754406..45789fc952 100644
--- a/lex.c.blt
+++ b/lex.c.blt
@@ -30,7 +30,7 @@ error "gperf generated tables don't work with this execution character set. Plea
#line 1 "defs/keywords"
-struct kwtable {unsigned int name, id[2], state;};
+struct kwtable {int name, id[2], state;};
const struct kwtable *rb_reserved_word(const char *, unsigned int);
#ifndef RIPPER
static const struct kwtable *reserved_word(const char *, unsigned int);