diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-19 08:46:49 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-19 08:46:49 +0000 |
commit | e5f1ceab4ddb9a36558af2a1c061fb222fd87df6 (patch) | |
tree | 6e0a3bdc3ea2561c64a5d2846ab306308b4881b6 /lib | |
parent | b2a40d21217cdffca654c7d4587237266a27c3ad (diff) | |
download | ruby-e5f1ceab4ddb9a36558af2a1c061fb222fd87df6.tar.gz ruby-e5f1ceab4ddb9a36558af2a1c061fb222fd87df6.tar.xz ruby-e5f1ceab4ddb9a36558af2a1c061fb222fd87df6.zip |
* compile.c (iseq_compile_each): remove "retry" in block.
("iter{retry}" cause syntax error)
Currently, "begin; ...; rescue; iter{retry}; end" cause
syntax error too.
* bootstraptest/test_jump.rb: ditto.
* lib/drb/invokemethod.rb: ditto.
* sample/drb/darrayc.rb: ditto.
* sample/test.rb: ditto.
* test/drb/drbtest.rb: ditto.
* test/ruby/test_iterator.rb: ditto.
* sample/test.rb: add a 'test' directory on the SYSTEM test.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14326 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/drb/invokemethod.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/drb/invokemethod.rb b/lib/drb/invokemethod.rb index 412b2ab9b..7da8ace88 100644 --- a/lib/drb/invokemethod.rb +++ b/lib/drb/invokemethod.rb @@ -20,8 +20,6 @@ module DRb end if jump_error case jump_error.reason - when :retry - retry when :break break(jump_error.exit_value) else |