From efd250b09d2a5d583c54ab8d2a974b3e6acfa053 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 27 Nov 2001 10:00:35 +0000 Subject: * marshal.c (w_float): must distinguish -0.0 from 0.0. * gc.c (gc_mark_all): tweak mark order for little bit better scan. * gc.c (rb_gc_mark): ditto. * gc.c (rb_gc): ditto. * enum.c (sort_by_i): slight performance boost. * gc.c (gc_mark_rest): should call gc_mark_children(), not gc_mark(). * gc.c (rb_gc_mark): may cause infinite looop. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1861 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 3159db3e4..3c3b48e0d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,20 @@ +Tue Nov 27 02:15:25 2001 Yukihiro Matsumoto + + * marshal.c (w_float): must distinguish -0.0 from 0.0. + Mon Nov 26 20:57:24 2001 Akinori MUSHA * ext/Setup*, ext/syslog/*: import the "syslog" module from the rough ruby project. +Mon Nov 26 16:14:42 2001 K.Kosako + + * gc.c (gc_mark_all): tweak mark order for little bit better scan. + + * gc.c (rb_gc_mark): ditto. + + * gc.c (rb_gc): ditto. + Mon Nov 26 16:54:59 2001 Usaku Nakamura * win32/win32.c (mypopen): fixed that mypclose() didn't really close @@ -11,11 +23,21 @@ Mon Nov 26 16:54:59 2001 Usaku Nakamura * win32/win32.c (CreateChild): set STARTF_USESTDHANDLES flag only when some handles are passed. +Mon Nov 26 16:31:28 2001 Yukihiro Matsumoto + + * enum.c (sort_by_i): slight performance boost. + Sun Nov 25 21:02:18 2001 Usaku Nakamura * parse.y (str_extend): change types of second and third arguments from char to int. +Thu Nov 22 20:15:28 2001 TAMURA Takashi + + * gc.c (gc_mark_rest): should call gc_mark_children(), not gc_mark(). + + * gc.c (rb_gc_mark): may cause infinite looop. + Thu Nov 22 00:28:13 2001 Yukihiro Matsumoto * parse.y (str_extend): should check nesting parentheses in #{}. -- cgit