summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-16 00:30:16 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-16 00:30:16 +0000
commit78e376a3eeab15deb1d1a240bb9b575691178a46 (patch)
treebe8a1daff7f8f2cab4a0129a66bbf30e40099305 /parse.y
parentd2c07ecb88425b9f9571b1637499f8f977b06714 (diff)
* defs/keywords (reserved_word): made inline function static.
[ruby-core:23210] * parse.y (rb_reserved_word): ordinary function for ripper. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23436 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y8
1 files changed, 8 insertions, 0 deletions
diff --git a/parse.y b/parse.y
index ec711add00..08a1f365ac 100644
--- a/parse.y
+++ b/parse.y
@@ -9715,6 +9715,14 @@ VALUE rb_parser_get_yydebug(VALUE);
VALUE rb_parser_set_yydebug(VALUE, VALUE);
#ifndef RIPPER
+#undef rb_reserved_word
+
+const struct kwtable *
+rb_reserved_word(const char *str, unsigned int len)
+{
+ return reserved_word(str, len);
+}
+
static struct parser_params *
parser_new(void)
{