diff --git a/ChangeLog b/ChangeLog index c4adad6dea..7801aae5af 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Dec 9 18:10:10 2013 Koichi Sasada + + * vm.c (vm_stat): renamed from ruby_vm_stat. + Should not use ruby_ prefix here. + Mon Dec 9 16:13:31 2013 Nobuyoshi Nakada * gc.c (wmap_size): add ObjectSpace::WeakMap#size and #length. diff --git a/vm.c b/vm.c index 6af1bf13d9..b47d0c2903 100644 --- a/vm.c +++ b/vm.c @@ -136,7 +136,7 @@ rb_vm_inc_const_missing_count(void) */ static VALUE -ruby_vm_stat(int argc, VALUE *argv, VALUE self) +vm_stat(int argc, VALUE *argv, VALUE self) { static VALUE sym_method_serial, sym_constant_serial, sym_class_serial; VALUE arg = Qnil; @@ -2360,7 +2360,7 @@ Init_VM(void) rb_cRubyVM = rb_define_class("RubyVM", rb_cObject); rb_undef_alloc_func(rb_cRubyVM); rb_undef_method(CLASS_OF(rb_cRubyVM), "new"); - rb_define_singleton_method(rb_cRubyVM, "stat", ruby_vm_stat, -1); + rb_define_singleton_method(rb_cRubyVM, "stat", vm_stat, -1); /* FrozenCore (hidden) */ fcore = rb_class_new(rb_cBasicObject);