From 8147bd1e491718521bea4aa97fe98010dbbb6625 Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 21 May 2015 02:00:31 +0000 Subject: * proc.c (method_proc): rename to method_to_proc. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50573 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- proc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'proc.c') diff --git a/proc.c b/proc.c index b062a4a9f9..42a5d13a0a 100644 --- a/proc.c +++ b/proc.c @@ -2397,7 +2397,7 @@ rb_proc_new( */ static VALUE -method_proc(VALUE method) +method_to_proc(VALUE method) { VALUE procval; struct METHOD *meth; @@ -2679,7 +2679,7 @@ proc_curry(int argc, const VALUE *argv, VALUE self) static VALUE rb_method_curry(int argc, const VALUE *argv, VALUE self) { - VALUE proc = method_proc(self); + VALUE proc = method_to_proc(self); return proc_curry(argc, argv, proc); } @@ -2806,7 +2806,7 @@ Init_Proc(void) rb_define_method(rb_cMethod, "arity", method_arity_m, 0); rb_define_method(rb_cMethod, "inspect", method_inspect, 0); rb_define_method(rb_cMethod, "to_s", method_inspect, 0); - rb_define_method(rb_cMethod, "to_proc", method_proc, 0); + rb_define_method(rb_cMethod, "to_proc", method_to_proc, 0); rb_define_method(rb_cMethod, "receiver", method_receiver, 0); rb_define_method(rb_cMethod, "name", method_name, 0); rb_define_method(rb_cMethod, "original_name", method_original_name, 0); -- cgit v1.2.3