summaryrefslogtreecommitdiff
path: root/proc.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-04-25 01:35:13 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-04-25 01:35:13 +0000
commit354844be45efe799031b1a9799e8c6d52cc6b16d (patch)
tree3a3f7b00ed003baf4eff8f43840112ba5939b7aa /proc.c
parent4134a542baa4e9a5c49adab53272d74edfc55f4d (diff)
* eval_intern.h (PUSH_TAG): no argument now.
* eval.c, eval_error.h, eval_jump.h, eval_load.c, proc.c, thread.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12212 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/proc.c b/proc.c
index 54e3c946f0..98d62e2a35 100644
--- a/proc.c
+++ b/proc.c
@@ -995,7 +995,7 @@ rb_method_call(int argc, VALUE *argv, VALUE method)
if (data->recv == Qundef) {
rb_raise(rb_eTypeError, "can't call unbound method; bind first");
}
- PUSH_TAG(PROT_NONE);
+ PUSH_TAG();
if (OBJ_TAINTED(method)) {
safe = rb_safe_level();
if (rb_safe_level() < 4) {