ruby-changes:8967
From: yugui <ko1@a...>
Date: Thu, 4 Dec 2008 17:56:59 +0900 (JST)
Subject: [ruby-changes:8967] Ruby:r20505 (ruby_1_9_1): merges r20480 from trunk into ruby_1_9_1.
yugui 2008-12-04 17:55:45 +0900 (Thu, 04 Dec 2008) New Revision: 20505 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=20505 Log: merges r20480 from trunk into ruby_1_9_1. * vm_method.c (rb_obj_respond_to): Remove a duplicated rdoc comment and fix a markup error. Modified files: branches/ruby_1_9_1/ChangeLog branches/ruby_1_9_1/vm_method.c Index: ruby_1_9_1/ChangeLog =================================================================== --- ruby_1_9_1/ChangeLog (revision 20504) +++ ruby_1_9_1/ChangeLog (revision 20505) @@ -1,3 +1,8 @@ +Thu Dec 4 11:38:40 2008 Akinori MUSHA <knu@i...> + + * vm_method.c (rb_obj_respond_to): Remove a duplicated rdoc + comment and fix a markup error. + Thu Dec 4 06:04:16 2008 Hidetoshi NAGAI <nagai@a...> * ext/tk/lib/tk/menu.rb: TkOptionMenubutton.new fails to treat Index: ruby_1_9_1/vm_method.c =================================================================== --- ruby_1_9_1/vm_method.c (revision 20504) +++ ruby_1_9_1/vm_method.c (revision 20505) @@ -1054,15 +1054,6 @@ return 0; } -/* - * call-seq: - * obj.respond_to?(symbol, include_private=false) => true or false - * - * Returns +true+> if _obj_ responds to the given - * method. Private methods are included in the search only if the - * optional second parameter evaluates to +true+. - */ - int rb_obj_respond_to(VALUE obj, ID id, int priv) { @@ -1091,7 +1082,7 @@ * call-seq: * obj.respond_to?(symbol, include_private=false) => true or false * - * Returns +true+> if _obj_ responds to the given + * Returns +true+ if _obj_ responds to the given * method. Private methods are included in the search only if the * optional second parameter evaluates to +true+. */ -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/