-
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 (load_dyna): clear ruby_errinfo. (ruby-bugs-ja PR#409)
* io.c (read_all): make str empty if given. (ruby-bugs-ja PR#408) * io.c (io_read): ditto. * io.c (rb_io_sysread): ditto. * range.c: do not override min and max. * sprintf.c (remove_sign_bits): octal left most digit for negative numbers may be '3'. (ruby-bugs-ja PR#407) * sprintf.c (rb_f_sprintf): should prefix sign bits if bignum is negative, using sign_bits(). * eval.c (avalue_to_mrhs): split argument passing and assignment conversion. * eval.c (svalue_to_mrhs): ditto. * eval.c (avalue_to_svalue): avalue_to_svalue([[1,2]]) should be [[1,2]], not [1,2] to wrap-around. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3584 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Mar 20, 2003
1 parent
5782e5b
commit 85dd7bb
Showing
12 changed files
with
685 additions
and
516 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 |
---|---|---|
|
@@ -2,21 +2,55 @@ Thu Mar 20 10:45:29 2003 Tanaka Akira <[email protected]> | |
|
||
* eval.c (bmcall): add volatile to avoid GC problem. | ||
|
||
Thu Mar 20 10:10:49 2003 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (load_dyna): clear ruby_errinfo. (ruby-bugs-ja PR#409) | ||
|
||
Wed Mar 19 23:05:30 2003 NAKAMURA, Hiroshi <[email protected]> | ||
|
||
* lib/tracer.rb (trace_func): save and recover Thread.critical state. | ||
Fixed by Fukumoto Atsushi <[email protected]> [ruby-dev:19830] | ||
|
||
Wed Mar 19 02:55:46 2003 Yukihiro Matsumoto <[email protected]> | ||
|
||
* io.c (read_all): make str empty if given. (ruby-bugs-ja PR#408) | ||
|
||
* io.c (io_read): ditto. | ||
|
||
* io.c (rb_io_sysread): ditto. | ||
|
||
Tue Mar 18 18:24:03 2003 Yukihiro Matsumoto <[email protected]> | ||
|
||
* range.c: do not override min and max. | ||
|
||
Sun Mar 16 12:29:55 2003 Tanaka Akira <[email protected]> | ||
|
||
* lib/pp.rb (object_address_group): use to_s instead of name | ||
to get name of class. | ||
|
||
Fri Mar 14 08:53:29 2003 Yukihiro Matsumoto <[email protected]> | ||
|
||
* sprintf.c (remove_sign_bits): octal left most digit for negative | ||
numbers may be '3'. (ruby-bugs-ja PR#407) | ||
|
||
* sprintf.c (rb_f_sprintf): should prefix sign bits if bignum is | ||
negative, using sign_bits(). | ||
|
||
Wed Mar 12 16:48:19 2003 WATANABE Hirofumi <[email protected]> | ||
|
||
* io.c (prep_stdio): set binmode only if the file descriptor | ||
is not connected to a terminal on Cygwin. | ||
|
||
Wed Mar 12 11:23:49 2003 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (avalue_to_mrhs): split argument passing and assignment | ||
conversion. | ||
|
||
* eval.c (svalue_to_mrhs): ditto. | ||
|
||
* eval.c (avalue_to_svalue): avalue_to_svalue([[1,2]]) should be | ||
[[1,2]], not [1,2] to wrap-around. | ||
|
||
Tue Mar 11 21:00:59 2003 Minero Aoki <[email protected]> | ||
|
||
* lib/net/smtp.rb: Digest string wrongly included '\n' when user | ||
|
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.