summaryrefslogtreecommitdiff
path: root/eval_jump.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-10 16:33:51 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-10 16:33:51 +0000
commited4139e39bb3ceda2985b2ea2ebd9a91479d25da (patch)
tree5d3dd4ee2335a7dc1fc437e8dd8fc01e4b22774d /eval_jump.c
parent8b7a284b65cdc1ebb71cff34db473af1b17390d1 (diff)
* include/ruby/intern.h, proc.c: revert rb_proc_call() and
create rb_proc_call_with_block() instaed. * include/ruby/ruby.h, eval_jump.c, thread.c, vm_insnhelper.c: rb_blockptr should not be exposed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17081 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval_jump.c')
-rw-r--r--eval_jump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval_jump.c b/eval_jump.c
index 7d394f431d..f474844ba8 100644
--- a/eval_jump.c
+++ b/eval_jump.c
@@ -10,7 +10,7 @@
void
rb_call_end_proc(VALUE data)
{
- rb_proc_call(data, rb_ary_new(), 0);
+ rb_proc_call(data, rb_ary_new());
}
/*