-
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 (rb_thread_restore_context): save current value of
lastline and lastmatch in the thread struct for later restore. * eval.c (rb_thread_save_context): restore lastline and lastmatch. * numeric.c (flo_to_s): should handle negative float value. * class.c (rb_include_module): should check whole ancestors to avoid duplicate module inclusion. * string.c (trnext): should check backslash before updating "now" position. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1746 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Sep 8, 2001
1 parent
1bcc5eb
commit 67245ee
Showing
16 changed files
with
143 additions
and
69 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
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 |
---|---|---|
|
@@ -3,6 +3,17 @@ Sat Sep 8 07:13:42 2001 Wakou Aoyama <[email protected]> | |
* lib/net/telnet.rb: waitfor(): improvement. thanks to | ||
[email protected] | ||
|
||
Sat Sep 8 04:34:17 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (rb_thread_restore_context): save current value of | ||
lastline and lastmatch in the thread struct for later restore. | ||
|
||
* eval.c (rb_thread_save_context): restore lastline and lastmatch. | ||
|
||
Fri Sep 7 11:27:56 2001 akira yamada <[email protected]> | ||
|
||
* numeric.c (flo_to_s): should handle negative float value. | ||
|
||
Fri Sep 7 09:44:44 2001 Wakou Aoyama <[email protected]> | ||
|
||
* lib/net/telnet.rb: waitfor(): bug fix. | ||
|
@@ -31,28 +42,6 @@ Thu Sep 6 14:25:15 2001 Akinori MUSHA <[email protected]> | |
* ext/digest/digest.c (rb_digest_base_s_hexdigest): remove a debug | ||
print. | ||
|
||
Sun Aug 26 20:26:40 2001 Koji Arai <[email protected]> | ||
|
||
* ext/readline/readline.c: restore terminal mode | ||
even if readline() interrupted. | ||
|
||
* ext/readline/readline.c: returned string need to | ||
be tainted. | ||
|
||
* ext/readline/readline.c: fixed memory leak. | ||
|
||
* ext/readline/readline.c: allow negative index. | ||
|
||
* ext/readline/readline.c: added Readline::HISTORY.size | ||
same as Readline::HISTORY.length | ||
|
||
* ext/readline/readline.c: allow conditional parsing | ||
of the ~/.inputrc file by `$if Ruby'. | ||
|
||
* ext/readline/extconf.rb: check whether the | ||
libreadline has the variable `rl_completion_append_character' | ||
(this feature was implemented from GNU readline 2.1). | ||
|
||
Thu Sep 6 13:56:14 2001 Akinori MUSHA <[email protected]> | ||
|
||
* ext/digest/digest.c (rb_digest_base_s_digest, | ||
|
@@ -72,6 +61,16 @@ Thu Sep 6 07:16:14 2001 Nobuyoshi Nakada <[email protected]> | |
|
||
* ext/socket/socket.c (Init_socket): remove duplicating constants. | ||
|
||
Thu Sep 6 03:15:24 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* class.c (rb_include_module): should check whole ancestors to | ||
avoid duplicate module inclusion. | ||
|
||
Wed Sep 5 20:02:27 2001 Shin'ya Adzumi <[email protected]> | ||
|
||
* string.c (trnext): should check backslash before updating "now" | ||
position. | ||
|
||
Wed Sep 5 17:41:11 2001 WATANABE Hirofumi <[email protected]> | ||
|
||
* lib/jcode.rb (_regexp_quote): fix quote handling. | ||
|
@@ -7205,6 +7204,28 @@ Fri Aug 28 17:32:55 1999 Yasuhiro Fukuma <[email protected]> | |
* eval.c (rb_eval): should set return value (nil) explicitly if a | ||
value is omitted for return statement. | ||
|
||
Sun Aug 26 20:26:40 2001 Koji Arai <[email protected]> | ||
|
||
* ext/readline/readline.c: restore terminal mode | ||
even if readline() interrupted. | ||
|
||
* ext/readline/readline.c: returned string need to | ||
be tainted. | ||
|
||
* ext/readline/readline.c: fixed memory leak. | ||
|
||
* ext/readline/readline.c: allow negative index. | ||
|
||
* ext/readline/readline.c: added Readline::HISTORY.size | ||
same as Readline::HISTORY.length | ||
|
||
* ext/readline/readline.c: allow conditional parsing | ||
of the ~/.inputrc file by `$if Ruby'. | ||
|
||
* ext/readline/extconf.rb: check whether the | ||
libreadline has the variable `rl_completion_append_character' | ||
(this feature was implemented from GNU readline 2.1). | ||
|
||
Thu Aug 26 15:06:11 1999 Masaki Fukushima <[email protected]> | ||
|
||
* gc.c (rb_gc): local variables may be placed beyond stack_end, so | ||
|
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
Oops, something went wrong.