aboutsummaryrefslogtreecommitdiffstats
path: root/lex.c.blt
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-25 12:55:47 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-25 12:55:47 +0000
commit89080e02549b607d737f81e5868ff3396d537d97 (patch)
treee9cbd5f6be78b6e61f62fab1489742081ca8e008 /lex.c.blt
parentd02ef8342cb24af29aff64ff7985594845989bdb (diff)
downloadruby-89080e02549b607d737f81e5868ff3396d537d97.tar.gz
* parse.y (primary): make functional-style not operator to act
like function. see <http://d.hatena.ne.jp/ku-ma-me/20080624/p1>. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17573 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lex.c.blt')
-rw-r--r--lex.c.blt9
1 files changed, 6 insertions, 3 deletions
diff --git a/lex.c.blt b/lex.c.blt
index 7bf3a8264f..ea2068664e 100644
--- a/lex.c.blt
+++ b/lex.c.blt
@@ -1,5 +1,5 @@
-/* C code produced by gperf version 3.0.2 */
-/* Command-line: gperf --output-file=lex.c.tmp -C -p -j1 -i 1 -g -o -t -N rb_reserved_word -k'1,3,$' keywords */
+/* C code produced by gperf version 3.0.3 */
+/* Command-line: gperf -C -p -j1 -i 1 -g -o -t -N rb_reserved_word -k'1,3,$' keywords */
#if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \
&& ('%' == 37) && ('&' == 38) && ('\'' == 39) && ('(' == 40) \
@@ -101,6 +101,9 @@ hash (str, len)
#ifdef __GNUC__
__inline
+#ifdef __GNUC_STDC_INLINE__
+__attribute__ ((__gnu_inline__))
+#endif
#endif
const struct kwtable *
rb_reserved_word (str, len)
@@ -123,7 +126,7 @@ rb_reserved_word (str, len)
#line 42 "keywords"
{"then", {keyword_then, keyword_then}, EXPR_BEG},
#line 34 "keywords"
- {"not", {keyword_not, keyword_not}, EXPR_VALUE},
+ {"not", {keyword_not, keyword_not}, EXPR_ARG},
#line 27 "keywords"
{"false", {keyword_false, keyword_false}, EXPR_END},
#line 40 "keywords"