From 5b3c80abe258de5b889f5238fd2d2430c80281ff Mon Sep 17 00:00:00 2001 From: matz Date: Sun, 4 Oct 2009 17:05:59 +0000 Subject: * vm_method.c (basic_obj_respond_to): should not call #respond_to_missing? for not implemented methods. [ruby-core:25909] * vm_method.c (rb_method_boundp): returns exceptional value 2 for not-implemented methods when called from #respond_to? (specifies by new contant NOEX_RESPONDS). * method.h (enum): new constant NOEX_RESPONDS added. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25234 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index b88238348..6c4dc09a0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +Mon Oct 5 00:09:57 2009 Yukihiro Matsumoto + + * vm_method.c (basic_obj_respond_to): should not call + #respond_to_missing? for not implemented methods. + [ruby-core:25909] + + * vm_method.c (rb_method_boundp): returns exceptional value 2 for + not-implemented methods when called from #respond_to? (specifies + by new contant NOEX_RESPONDS). + + * method.h (enum): new constant NOEX_RESPONDS added. + Sun Oct 4 22:16:29 2009 Takeyuki FUJIOKA * lib/cgi/cookie.rb: add default value to @@accept_charset -- cgit