-
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.
* eval.c (proc_call): should not modify ruby_block->frame.iter
based on ruby_frame->iter altered by PUSH_ITER(). * eval.c (rb_thread_fd_close): should save current context before raising exception. * io.c (set_stdin): preserve original stdin. * io.c (set_outfile): preserve original stdout/stderr. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1219 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Feb 26, 2001
1 parent
69739b1
commit df2d69b
Showing
15 changed files
with
88 additions
and
78 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,3 +1,8 @@ | ||
Mon Feb 26 00:04:52 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (proc_call): should not modify ruby_block->frame.iter | ||
based on ruby_frame->iter altered by PUSH_ITER(). | ||
|
||
Mon Feb 26 05:27:52 2001 Wakou Aoyama <[email protected]> | ||
|
||
* lib/net/telnet.rb: #telnetmode(), #binmode(): bug fix. | ||
|
@@ -18,6 +23,11 @@ Sun Feb 25 02:45:30 2001 WATANABE Hirofumi <[email protected]> | |
|
||
* file.c (rb_file_s_rename): avoid Cygwin's bug. | ||
|
||
Sat Feb 24 23:32:55 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (rb_thread_fd_close): should save current context before | ||
raising exception. | ||
|
||
Sat Feb 24 22:14:00 2001 WATANABE Hirofumi <[email protected]> | ||
|
||
* win32/win32.c (myrename): fix error handling. | ||
|
@@ -29,6 +39,12 @@ Sat Feb 24 13:58:48 2001 Minero Aoki <[email protected]> | |
|
||
* lib/net/protocol.rb, smtp.rb, pop.rb, http.rb: change copyright. | ||
|
||
Sat Feb 24 03:15:49 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* io.c (set_stdin): preserve original stdin. | ||
|
||
* io.c (set_outfile): preserve original stdout/stderr. | ||
|
||
Fri Feb 23 08:28:58 2001 Minero Aoki <[email protected]> | ||
|
||
* lib/net/protocol.rb: clear read buffer after reopen. | ||
|
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
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 |
---|---|---|
|
@@ -29,4 +29,3 @@ | |
$TERM = "foo" | ||
p ENV["TERM"] | ||
end | ||
|
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,4 +1,4 @@ | ||
#define RUBY_VERSION "1.7.0" | ||
#define RUBY_RELEASE_DATE "2001-02-24" | ||
#define RUBY_RELEASE_DATE "2001-02-26" | ||
#define RUBY_VERSION_CODE 170 | ||
#define RUBY_RELEASE_CODE 20010224 | ||
#define RUBY_RELEASE_CODE 20010226 |