From 8147bd1e491718521bea4aa97fe98010dbbb6625 Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 21 May 2015 02:00:31 +0000 Subject: [PATCH] * 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 --- ChangeLog | 4 ++++ proc.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index f228108e44..7a77ab4781 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu May 21 10:59:43 2015 Koichi Sasada + + * proc.c (method_proc): rename to method_to_proc. + Thu May 21 10:51:54 2015 Jake Worth * io.c (rb_f_select): [DOC] Fixes for grammar and style. 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);