From 350aee1bdacbc128730a86b22e93001a99b785dd Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 11 Jul 2002 08:22:18 +0000 Subject: * string.c (rb_str_slice_bang): if there's no corresponding substring, slice! should return nil without exception. * array.c (rb_ary_insert): type fixed. * string.c (rb_str_split_m): accept separator value nil as well. * string.c (rb_str_become): was leaking memory. * class.c (rb_include_module): should not alter other classes/modules by inclusion. by this fix, local order may not be preserved for some cases. * class.c (include_class_new): module may be T_ICLASS; retrieve original module information. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2632 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index be94f252a..d5022d325 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,10 +3,23 @@ Thu Jul 11 12:59:23 2002 Shugo Maeda * lib/resolv.rb: untaint strings read from /etc/hosts and /etc/resolv.conf to prevent SecurityError when $SAFE==1. +Thu Jul 11 09:00:43 2002 Yukihiro Matsumoto + + * string.c (rb_str_slice_bang): if there's no corresponding + substring, slice! should return nil without exception. + Tue Jul 9 20:03:55 2002 Keiju Ishitsuka * irb 0.9 +Sat Jul 6 07:35:02 2002 Jamie Herre + + * array.c (rb_ary_insert): type fixed. + +Fri Jul 5 09:17:00 2002 Yukihiro Matsumoto + + * string.c (rb_str_split_m): accept separator value nil as well. + Fri Jul 5 08:59:15 2002 Michal Rokos * enum.c: Fix bug in enum_sort_by and some code indents @@ -17,6 +30,10 @@ Fri Jul 5 05:00:40 2002 Wakou Aoyama thanks to Sean Chittenden , Shugo Maeda +Fri Jul 5 00:10:09 2002 Yukihiro Matsumoto + + * string.c (rb_str_become): was leaking memory. + Thu Jul 4 23:43:26 2002 Minero Aoki * parse.y: remove useless function str_extend_p(). @@ -46,6 +63,15 @@ Wed Jul 3 02:32:31 2002 Wakou Aoyama * lib/cgi.rb (CGI#initialize): improvement for mod_ruby. +Tue Jul 2 14:53:10 2002 Yukihiro Matsumoto + + * class.c (rb_include_module): should not alter other + classes/modules by inclusion. by this fix, local order may not + be preserved for some cases. + + * class.c (include_class_new): module may be T_ICLASS; retrieve + original module information. + Tue Jul 2 14:13:11 2002 Wakou Aoyama * lib/cgi.rb (CGI#header): accept any type as value. -- cgit