-
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.
* time.c (time_load): restore instance variables (if any) before
loading from marshaled data. * time.c (time_mdump): new marshal dumper. _dump is still available for compatibility. * time.c (time_mload): new marshal loader. * marshal.c (w_object): preserve instance variables for objects with marshal_dump. * marshal.c (r_object0): restore instance variables before calling marshal_load. * error.c (rb_warn_m): always return nil. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4651 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Oct 2, 2003
1 parent
a70a430
commit 10c4bb2
Showing
6 changed files
with
189 additions
and
80 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 @@ | ||
Thu Oct 2 17:22:37 2003 Yukihiro Matsumoto <[email protected]> | ||
|
||
* time.c (time_load): restore instance variables (if any) before | ||
loading from marshaled data. | ||
|
||
Thu Oct 2 14:19:15 2003 Nobuyoshi Nakada <[email protected]> | ||
|
||
* ext/iconv/iconv.c (iconv_fail): now yield erred substring, and | ||
|
@@ -37,6 +42,21 @@ Thu Oct 2 03:25:01 2003 NAKAMURA Usaku <[email protected]> | |
|
||
* eval.c (rb_thread_raise): prototype; avoid VC++ warning. | ||
|
||
Thu Oct 2 01:37:34 2003 Yukihiro Matsumoto <[email protected]> | ||
|
||
* time.c (time_mdump): new marshal dumper. _dump is still | ||
available for compatibility. | ||
|
||
* time.c (time_mload): new marshal loader. | ||
|
||
* marshal.c (w_object): preserve instance variables for objects | ||
with marshal_dump. | ||
|
||
* marshal.c (r_object0): restore instance variables before calling | ||
marshal_load. | ||
|
||
* error.c (rb_warn_m): always return nil. | ||
|
||
Thu Oct 2 01:32:46 2003 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (rb_f_block_given_p): real required condition is | ||
|
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.