-
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_eval): replace rb_cvar_declare() by rb_cvar_set().
* eval.c (assign): ditto. * variable.c (rb_cvar_set): 4th argument (warn) added; define new class variable if it's not defined yet. * variable.c (rb_cvar_declare): removed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2073 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Feb 15, 2002
1 parent
289430e
commit 1e5d404
Showing
5 changed files
with
23 additions
and
39 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,14 @@ | ||
Fri Feb 15 14:40:38 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (rb_eval): replace rb_cvar_declare() by rb_cvar_set(). | ||
|
||
* eval.c (assign): ditto. | ||
|
||
* variable.c (rb_cvar_set): 4th argument (warn) added; define new | ||
class variable if it's not defined yet. | ||
|
||
* variable.c (rb_cvar_declare): removed. | ||
|
||
Fri Feb 15 13:36:58 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* bignum.c (rb_big_rshift): should properly convert the nagative | ||
|
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.2" | ||
#define RUBY_RELEASE_DATE "2002-02-14" | ||
#define RUBY_RELEASE_DATE "2002-02-15" | ||
#define RUBY_VERSION_CODE 172 | ||
#define RUBY_RELEASE_CODE 20020214 | ||
#define RUBY_RELEASE_CODE 20020215 |