-
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.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1065 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Dec 18, 2000
1 parent
652f744
commit 117b7d5
Showing
12 changed files
with
110 additions
and
20 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,28 @@ | ||
Mon Dec 18 18:10:30 2000 Yukihiro Matsumoto <[email protected]> | ||
|
||
* time.c (time_plus): usec might underflow (ruby-bugs-ja:#PR33). | ||
|
||
Mon Dec 18 08:11:20 2000 Yukihiro Matsumoto <[email protected]> | ||
|
||
* hash.c (rb_hash_set_default): should call rb_hash_modify(). | ||
|
||
Sat Dec 16 02:58:26 2000 Minero Aoki <[email protected]> | ||
|
||
* eval.c (rb_eval): should clear ruby_errinfo on retry. | ||
|
||
* eval.c (rb_rescue2): ditto. | ||
|
||
Thu Dec 14 13:06:18 2000 Nobuyoshi Nakada <[email protected]> | ||
|
||
* class.c (rb_include_module): prohibit fronzen class/module. | ||
|
||
* eval.c (rb_frozen_class_p): make external. | ||
|
||
* intern.h (rb_frozen_class_p): prototyped. | ||
|
||
* intern.h (rb_undef): prototyped not but rb_undef_method() | ||
which is also in ruby.h. | ||
|
||
Thu Dec 14 09:20:26 2000 Wakou Aoyama <[email protected]> | ||
|
||
* lib/cgi.rb: support -T1 on ruby 1.6.2 | ||
|
@@ -6,6 +31,17 @@ Thu Dec 14 09:20:26 2000 Wakou Aoyama <[email protected]> | |
|
||
* lib/net/telnet.rb: ditto. | ||
|
||
Wed Dec 13 23:27:06 2000 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (rb_eval): handles case statement without expr, which | ||
looks for any TRUE (non nil, non false) when expression. | ||
|
||
* parse.y (primary): case expression should not be compstmt, but | ||
mere expr. | ||
|
||
* parse.y (primary): case without following expression is now | ||
separated rule. | ||
|
||
Wed Dec 13 12:41:27 2000 WATANABE Hirofumi <[email protected]> | ||
|
||
* ruby.c (proc_options): accept "--^M" for DOS line endings. | ||
|
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
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.6.2" | ||
#define RUBY_RELEASE_DATE "2000-12-13" | ||
#define RUBY_RELEASE_DATE "2000-12-18" | ||
#define RUBY_VERSION_CODE 162 | ||
#define RUBY_RELEASE_CODE 20001213 | ||
#define RUBY_RELEASE_CODE 20001218 |