aboutsummaryrefslogtreecommitdiffstats
path: root/iseq.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-21 07:54:44 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-21 07:54:44 +0000
commitb66075d8da1d870a4c2961cc8c6b4207418f9ce2 (patch)
tree0d2a1fc3475218c5609617f31830a3b909c0eea8 /iseq.c
parent023b65411fb6b68f583a9e3bb7bb1fa64385d19c (diff)
downloadruby-b66075d8da1d870a4c2961cc8c6b4207418f9ce2.tar.gz
* proc.c (rb_method_get_iseq): rename to rb_method_iseq.
* iseq.c: catch up this fix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iseq.c b/iseq.c
index b4cdda3185..3ae92e8555 100644
--- a/iseq.c
+++ b/iseq.c
@@ -1520,7 +1520,7 @@ iseq_s_of(VALUE klass, VALUE body)
ret = iseq->self;
}
}
- else if ((iseq = rb_method_get_iseq(body)) != 0) {
+ else if ((iseq = rb_method_iseq(body)) != 0) {
ret = iseq->self;
}
return ret;