aboutsummaryrefslogtreecommitdiffstats
path: root/proc.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 /proc.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 'proc.c')
-rw-r--r--proc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/proc.c b/proc.c
index 42a5d13a0a..b1a5bb03e5 100644
--- a/proc.c
+++ b/proc.c
@@ -924,7 +924,7 @@ rb_proc_get_iseq(VALUE self, int *is_proc)
iseq = 0;
if (IS_METHOD_PROC_ISEQ(ifunc)) {
/* method(:foo).to_proc */
- iseq = rb_method_get_iseq((VALUE)ifunc->data);
+ iseq = rb_method_iseq((VALUE)ifunc->data);
if (is_proc) *is_proc = 0;
}
}
@@ -2216,7 +2216,7 @@ method_get_cref(rb_method_definition_t *def)
rb_iseq_t *
-rb_method_get_iseq(VALUE method)
+rb_method_iseq(VALUE method)
{
return method_get_iseq(method_get_def(method));
}
@@ -2277,7 +2277,7 @@ rb_method_location(VALUE method)
static VALUE
rb_method_parameters(VALUE method)
{
- rb_iseq_t *iseq = rb_method_get_iseq(method);
+ rb_iseq_t *iseq = rb_method_iseq(method);
if (!iseq) {
return unnamed_parameters(method_arity(method));
}
@@ -2506,7 +2506,7 @@ proc_binding(VALUE self)
if (!IS_METHOD_PROC_ISEQ(iseq)) {
rb_raise(rb_eArgError, "Can't create Binding from C level Proc");
}
- iseq = rb_method_get_iseq((VALUE)((struct vm_ifunc *)iseq)->data);
+ iseq = rb_method_iseq((VALUE)((struct vm_ifunc *)iseq)->data);
GetEnvPtr(envval, env);
if (iseq && env->local_size < iseq->local_size) {
int prev_local_size = env->local_size;