summaryrefslogtreecommitdiff
path: root/lib/drb/invokemethod.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-28 09:05:08 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-28 09:05:08 +0000
commit1bd47bf0bc2051affae12a3a420abf2b44660389 (patch)
tree63ed0fbf16472b877b72e67921bb0463fe9493b6 /lib/drb/invokemethod.rb
parent3f1f17c8c5f3e30e33e904b3c77502bfa5718a5b (diff)
* eval.c (rb_call0): should call rb_call_super() directly for
visibility overriding. [ruby-dev:23989] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6714 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/drb/invokemethod.rb')
-rw-r--r--lib/drb/invokemethod.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/drb/invokemethod.rb b/lib/drb/invokemethod.rb
index 7cea01707f..a59b41d0a0 100644
--- a/lib/drb/invokemethod.rb
+++ b/lib/drb/invokemethod.rb
@@ -9,7 +9,7 @@ module DRb
end
block_value = @block.call(*x)
end
-
+
def perform_with_block
@obj.__send__(@msg_id, *@argv) do |*x|
jump_error = nil