diff options
author | keiju <keiju@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-23 07:51:19 +0000 |
---|---|---|
committer | keiju <keiju@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-23 07:51:19 +0000 |
commit | 197ce26993041e9f9a89069c0359bd1a60218201 (patch) | |
tree | 983633173d19ca30e3aed24490506feea39b0075 | |
parent | 0124af90634dd27e29206a9a05ec50beae95f7e4 (diff) |
* 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
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | lib/irb/ruby-lex.rb | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ +Sat Aug 23 16:48:41 2003 Keiju Ishitsuka <[email protected]> + * lib/irb/ruby-lex.rb: bug fix for "foo" !~ /bar/. [ruby-talk:79942] + Sat Aug 23 15:59:58 2003 Nobuyoshi Nakada <[email protected]> * eval.c (rb_eval, rb_iterate, block_pass): reduce PUSH/POP_TAG and diff --git a/lib/irb/ruby-lex.rb b/lib/irb/ruby-lex.rb index 5a005e5961..5fbcff90ec 100644 --- a/lib/irb/ruby-lex.rb +++ b/lib/irb/ruby-lex.rb @@ -392,7 +392,7 @@ class RubyLex @OP.def_rules("!", "!=", "!~") do |op, io| - #@lex_state = EXPR_BEG + @lex_state = EXPR_BEG Token(op) end |