diff options
author | 卜部昌平 <[email protected]> | 2022-09-16 15:14:05 +0900 |
---|---|---|
committer | 卜部昌平 <[email protected]> | 2022-09-21 11:44:09 +0900 |
commit | 45741918e1963fce3416b253712cfd4745368e7f (patch) | |
tree | 8c1563e91df0c162f0f811f9b1d985ed3c91617d /defs/lex.c.src | |
parent | 77c61ae3ab51746c986ff853c85b5e05bc6a942b (diff) |
reserved_word: just use gperf 3.1 declaration
The reason why this was commented out was because of gperf 3.0 vs 3.1
differences (see [Feature #13883]). Five years passed, I am pretty
confident that we can drop support of old versions here.
Ditto for uniname2ctype_p(), onig_jis_property(), and zonetab().
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/6358
Diffstat (limited to 'defs/lex.c.src')
-rw-r--r-- | defs/lex.c.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/defs/lex.c.src b/defs/lex.c.src index fc30ec2d15..a1b1f4f60f 100644 --- a/defs/lex.c.src +++ b/defs/lex.c.src @@ -2,7 +2,7 @@ struct kwtable {short name, id[2], state;}; const struct kwtable *rb_reserved_word(const char *, unsigned int); #ifndef RIPPER -static const struct kwtable *reserved_word(/*!ANSI{*/const char *, unsigned int/*}!ANSI*/); +static const struct kwtable *reserved_word(register const char *str, register size_t len); #define rb_reserved_word(str, len) reserved_word(str, len) %} |