-
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.
* io.c (rb_io_s_new): block check moved from initialize to this
method. * io.c (rb_io_s_open): open should call initialize too. IO#for_fd also calls initialize. [new] * error.c (rb_sys_fail): replace INT2FIX() by INT2NUM() since errno value may not fit in Fixnum size on Hurd. * error.c (set_syserr): ditto. * dir.c (dir_s_glob): returns nil if block given. * io.c (rb_io_each_byte): should return self. * io.c (rb_io_close_m): close check added. * dir.c (dir_seek): should return pos. * parse.y (fixpos): orig may be (NODE*)1, which should not be dereferenced. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2004 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Jan 18, 2002
1 parent
9bb8210
commit a7a7324
Showing
8 changed files
with
116 additions
and
109 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,7 +1,37 @@ | ||
Fri Jan 18 17:32:09 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* io.c (rb_io_s_new): block check moved from initialize to this | ||
method. | ||
|
||
* io.c (rb_io_s_open): open should call initialize too. IO#for_fd | ||
also calls initialize. [new] | ||
|
||
Fri Jan 18 10:26:33 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* error.c (rb_sys_fail): replace INT2FIX() by INT2NUM() since | ||
errno value may not fit in Fixnum size on Hurd. | ||
|
||
* error.c (set_syserr): ditto. | ||
|
||
Fri Jan 18 10:12:00 2002 Usaku Nakamura <[email protected]> | ||
|
||
* ext/socket/socket.c (tcp_svr_s_open): fix typo. | ||
|
||
Fri Jan 18 02:27:48 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* dir.c (dir_s_glob): returns nil if block given. | ||
|
||
* io.c (rb_io_each_byte): should return self. | ||
|
||
* io.c (rb_io_close_m): close check added. | ||
|
||
* dir.c (dir_seek): should return pos. | ||
|
||
Fri Jan 18 01:21:53 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* parse.y (fixpos): orig may be (NODE*)1, which should not be | ||
dereferenced. | ||
|
||
Thu Jan 17 16:21:42 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (block_pass): allow "retry" from within argument passed | ||
|
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.