From a58115c9ce623e25c3b841feb3f5b9faf1f39df5 Mon Sep 17 00:00:00 2001 From: matz Date: Sun, 4 Nov 2007 20:36:20 +0000 Subject: * eval.c (rb_f_send): allow send/__send__ to call methods of all visibility again. we no longer provide __send, __send!. * eval.c (rb_invoke_method): new method to honor private visibility. if it's invoked in a function call style, it calls private methods as well (previous 1.9 send behavior). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13824 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 848b8c10f..ee3d42d28 100644 --- a/ChangeLog +++ b/ChangeLog @@ -17,6 +17,15 @@ Mon Nov 5 01:02:56 2007 Minero Aoki User-Agent to fix 500 error on some corrupted HTTP servers. [ruby-core:13135] +Mon Nov 5 00:32:32 2007 Yukihiro Matsumoto + + * eval.c (rb_f_send): allow send/__send__ to call methods of all + visibility again. we no longer provide __send, __send!. + + * eval.c (rb_invoke_method): new method to honor private + visibility. if it's invoked in a function call style, it calls + private methods as well (previous 1.9 send behavior). + Mon Nov 5 00:24:24 2007 NAKAMURA Usaku * win32/Makefile.sub: vendor_ruby support. -- cgit