From b07e78fa32f842629bc058430dea89ae9fa820bd Mon Sep 17 00:00:00 2001 From: ko1 Date: Mon, 6 Jul 2015 08:35:22 +0000 Subject: * method.h, proc.c (rb_method_entry_location): make it static and remoev prefix `rb_' because it is used only in proc.c. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51159 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ method.h | 1 - proc.c | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index cc4e48a17c..10d740d8cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Jul 6 17:16:37 2015 Koichi Sasada + + * method.h, proc.c (rb_method_entry_location): make it static + and remoev prefix `rb_' because it is used only in proc.c. + Mon Jul 6 16:42:10 2015 SHIBATA Hiroshi * test/lib/memory_status.rb: removed redundant path. diff --git a/method.h b/method.h index 2a75c810c0..1a409cc0d4 100644 --- a/method.h +++ b/method.h @@ -197,7 +197,6 @@ int rb_method_entry_arity(const rb_method_entry_t *me); int rb_method_entry_eq(const rb_method_entry_t *m1, const rb_method_entry_t *m2); st_index_t rb_hash_method_entry(st_index_t hash, const rb_method_entry_t *me); -VALUE rb_method_entry_location(const rb_method_entry_t *me); VALUE rb_mod_method_location(VALUE mod, ID id); VALUE rb_obj_method_location(VALUE obj, ID id); diff --git a/proc.c b/proc.c index 15a5cef433..387a7ba5e7 100644 --- a/proc.c +++ b/proc.c @@ -2247,8 +2247,8 @@ method_def_location(const rb_method_definition_t *def) return iseq_location(method_def_iseq(def)); } -VALUE -rb_method_entry_location(const rb_method_entry_t *me) +static VALUE +method_entry_location(const rb_method_entry_t *me) { if (!me) return Qnil; return method_def_location(me->def); @@ -2258,7 +2258,7 @@ VALUE rb_mod_method_location(VALUE mod, ID id) { const rb_method_entry_t *me = original_method_entry(mod, id); - return rb_method_entry_location(me); + return method_entry_location(me); } VALUE -- cgit v1.2.3