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
commit0dba10a47f8f1269eb90f1617ddfb484bd3d8229 (patch)
tree0d2a1fc3475218c5609617f31830a3b909c0eea8 /iseq.c
parent0b5ecba435280947a16ab08fac0592fb3dc915d2 (diff)
downloadruby-0dba10a47f8f1269eb90f1617ddfb484bd3d8229.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;