-
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.
* array.c (Init_Array): remove Array#filter.
* object.c (rb_mod_initialize): should accept zero argument. * object.c (rb_mod_cmp): should raise ArgumentError if inheritance/inclusion relation between two classes/modules is not defined. [new] * io.c (rb_io_fsync): new method. [new] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2014 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Jan 23, 2002
1 parent
b6cc058
commit eb9708f
Showing
13 changed files
with
102 additions
and
42 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,11 +1,27 @@ | ||
Wed Jan 23 16:07:31 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* array.c (Init_Array): remove Array#filter. | ||
|
||
Wed Jan 23 13:27:44 2002 Nobuyoshi Nakada <[email protected]> | ||
|
||
* eval.c (rb_yield_0): restore source file/line after yield. | ||
|
||
Wed Jan 23 02:00:14 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* object.c (rb_mod_initialize): should accept zero argument. | ||
|
||
* object.c (rb_mod_cmp): should raise ArgumentError if | ||
inheritance/inclusion relation between two classes/modules is | ||
not defined. [new] | ||
|
||
Tue Jan 22 17:45:23 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* io.c (rb_io_fsync): new method. [new] | ||
|
||
Mon Jan 21 22:57:18 2002 Nobuyoshi Nakada <[email protected]> | ||
|
||
* signal.c (ruby_signal): must define sighandler_t unless | ||
POSIX_SIGNAL. | ||
* signal.c (ruby_signal): must define sighandler_t for every | ||
occasion. | ||
|
||
Mon Jan 21 08:25:30 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
: IO#fsync | ||
|
||
Added. | ||
|
||
: Array expansion | ||
|
||
Fixed with the following behavior: | ||
|
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
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