aboutsummaryrefslogtreecommitdiffstats
path: root/lex.c.blt
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-15 14:42:43 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-15 14:42:43 +0000
commit7c4306e6e9c3c4a255f4ad20134c1832dbe45ba2 (patch)
tree9dc0a268704c41c9ce7bd4fe7ce90b45321e4135 /lex.c.blt
parenta9419fbd4fe597a9ef41621d16664a659544ed76 (diff)
downloadruby-7c4306e6e9c3c4a255f4ad20134c1832dbe45ba2.tar.gz
gperf.sed: static declarations
* tool/gperf.sed: comment out arguments part only, to keep the following declarations static. [Feature #13883] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61282 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 813decc3df..d93a0b84b5 100644
--- a/lex.c.blt
+++ b/lex.c.blt
@@ -34,7 +34,7 @@
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);*/
+static const struct kwtable *reserved_word(/*const char *, unsigned int*/);
#define rb_reserved_word(str, len) reserved_word(str, len)
#line 9 "defs/keywords"
struct kwtable;