From 45c6913042489b0aeb3ce6a38bb5e6e245e20807 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sat, 27 Dec 2008 03:57:21 +0000 Subject: * vm_insnhelper.c (vm_call_method, vm_call_cfunc): use original id instead of calling id when NODE_CFUNC or NODE_BMETHOD. fixes Bug #632 [ruby-core:19282]. * vm_eval.c (vm_call0, vm_call_super): ditto. * vm_method.c (rb_add_method, rb_alias): store original id in nd_file field of NODE_METHOD. * test/stringio/test_stringio.rb: add a test. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index c7ae7a867..ee1231201 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +Sat Dec 27 11:41:45 2008 Koichi Sasada + + * vm_insnhelper.c (vm_call_method, vm_call_cfunc): use original id instead of + calling id when NODE_CFUNC or NODE_BMETHOD. + fixes Bug #632 [ruby-core:19282]. + + * vm_eval.c (vm_call0, vm_call_super): ditto. + + * vm_method.c (rb_add_method, rb_alias): store original id + in nd_file field of NODE_METHOD. + + * test/stringio/test_stringio.rb: add a test. + Sat Dec 27 09:48:54 2008 Koichi Sasada * vm.c (Init_VM): create and define TOPLEVEL_BINDING at first. -- cgit