-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@1861 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Nov 27, 2001
1 parent
09a4937
commit 186c8b5
Showing
9 changed files
with
301 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,20 @@ | ||
Tue Nov 27 02:15:25 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* marshal.c (w_float): must distinguish -0.0 from 0.0. | ||
|
||
Mon Nov 26 20:57:24 2001 Akinori MUSHA <[email protected]> | ||
|
||
* ext/Setup*, ext/syslog/*: import the "syslog" module from the | ||
rough ruby project. | ||
|
||
Mon Nov 26 16:14:42 2001 K.Kosako <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* win32/win32.c (mypopen): fixed that mypclose() didn't really close | ||
|
@@ -11,11 +23,21 @@ Mon Nov 26 16:54:59 2001 Usaku Nakamura <[email protected]> | |
* win32/win32.c (CreateChild): set STARTF_USESTDHANDLES flag only | ||
when some handles are passed. | ||
|
||
Mon Nov 26 16:31:28 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* enum.c (sort_by_i): slight performance boost. | ||
|
||
Sun Nov 25 21:02:18 2001 Usaku Nakamura <[email protected]> | ||
|
||
* parse.y (str_extend): change types of second and third arguments | ||
from char to int. | ||
|
||
Thu Nov 22 20:15:28 2001 TAMURA Takashi <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* parse.y (str_extend): should check nesting parentheses in #{}. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.