1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/irb/ruby-lex.rb: bug fix for "foo" !~ /bar/. [ruby-talk:79942]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4431 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
keiju 2003-08-23 07:51:19 +00:00
parent 0124af9063
commit 197ce26993
2 changed files with 4 additions and 1 deletions

View file

@ -1,3 +1,6 @@
Sat Aug 23 16:48:41 2003 Keiju Ishitsuka <keiju@ishitsuka.com>
* lib/irb/ruby-lex.rb: bug fix for "foo" !~ /bar/. [ruby-talk:79942]
Sat Aug 23 15:59:58 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
* eval.c (rb_eval, rb_iterate, block_pass): reduce PUSH/POP_TAG and

View file

@ -392,7 +392,7 @@ class RubyLex
@OP.def_rules("!", "!=", "!~") do
|op, io|
#@lex_state = EXPR_BEG
@lex_state = EXPR_BEG
Token(op)
end