-
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 (appendline): forget to terminate with nul.
* eval.c (ruby_run): should set toplevel visibility again here. * eval.c (rb_eval): should not rely on ruby_class == rb_cObject check. Besides allow implicit publicity for attribute set methods. * parse.y (primary): need not to check class_nest, just set whether method is an attrset or not. * string.c (rb_str_each_line): p might be at the top of the string. * class.c (rb_make_metaclass): class of metaclass should be metaclass of superclass, unless class itself is a metaclass; class of metaclass of metaclass should point back to self. eh, confusing, isn't it. * class.c (rb_singleton_class): check if its class is singleton AND attached to self. * eval.c (rb_eval): should define class/module under ruby_cbase. * eval.c (rb_eval): should set class/module path based on ruby_cbase, not ruby_class. * eval.c (module_setup): use ruby_cbase instead of ruby_class. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2887 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Sep 25, 2002
1 parent
8a1e574
commit 4b9a7ea
Showing
10 changed files
with
83 additions
and
36 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 |
---|---|---|
|
@@ -20,6 +20,21 @@ Mon Sep 23 19:57:52 2002 WATANABE Hirofumi <[email protected]> | |
|
||
* lib/mkmf.rb: refactoring. | ||
|
||
Mon Sep 23 08:27:11 2002 Tanaka Akira <[email protected]> | ||
|
||
* io.c (appendline): forget to terminate with nul. | ||
|
||
Mon Sep 23 02:46:29 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (ruby_run): should set toplevel visibility again here. | ||
|
||
* eval.c (rb_eval): should not rely on ruby_class == rb_cObject | ||
check. Besides allow implicit publicity for attribute set | ||
methods. | ||
|
||
* parse.y (primary): need not to check class_nest, just set | ||
whether method is an attrset or not. | ||
|
||
Sun Sep 22 21:49:42 2002 Nobuyoshi Nakada <[email protected]> | ||
|
||
* eval.c (call_trace_func): should not call trace function while | ||
|
@@ -32,6 +47,21 @@ Sun Sep 22 21:49:42 2002 Nobuyoshi Nakada <[email protected]> | |
* ruby.c (require_libraries): preserve source file/line for each | ||
require. | ||
|
||
Sun Sep 22 17:08:11 2002 Tanaka Akira <[email protected]> | ||
|
||
* string.c (rb_str_each_line): p might be at the top of the | ||
string. | ||
|
||
Sat Sep 21 23:28:28 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* class.c (rb_make_metaclass): class of metaclass should be | ||
metaclass of superclass, unless class itself is a metaclass; | ||
class of metaclass of metaclass should point back to self. | ||
eh, confusing, isn't it. | ||
|
||
* class.c (rb_singleton_class): check if its class is singleton | ||
AND attached to self. | ||
|
||
Sat Sep 21 22:23:41 2002 Nobuyoshi Nakada <[email protected]> | ||
|
||
* eval.c (rb_thread_raise): no need to save dead thread context. | ||
|
@@ -46,6 +76,15 @@ Fri Sep 20 19:43:40 2002 Akinori MUSHA <[email protected]> | |
|
||
* lib/set.rb: Merge rough/lib/set.rb rev.1.5-1.15. | ||
|
||
Wed Sep 18 12:41:16 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (rb_eval): should define class/module under ruby_cbase. | ||
|
||
* eval.c (rb_eval): should set class/module path based on | ||
ruby_cbase, not ruby_class. | ||
|
||
* eval.c (module_setup): use ruby_cbase instead of ruby_class. | ||
|
||
Tue Sep 17 21:06:04 2002 Nobuyoshi Nakada <[email protected]> | ||
|
||
* eval.c (rb_thread_die): put thread dead state. | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#define RUBY_VERSION "1.7.3" | ||
#define RUBY_RELEASE_DATE "2002-09-23" | ||
#define RUBY_RELEASE_DATE "2002-09-25" | ||
#define RUBY_VERSION_CODE 173 | ||
#define RUBY_RELEASE_CODE 20020923 | ||
#define RUBY_RELEASE_CODE 20020925 |