-
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 (is_defined): should not dump core for "defined?(())".
* eval.c (umethod_bind): recv can be an instance of descender of oklass if oklass is a Module. * hash.c (rb_hash_equal): check identiry equality first. * file.c (group_member): should check real gid only. * file.c (eaccess): do not cache euid, since effective euid may be changed via Process.euid=(). * file.c (eaccess): return -1 unless every specified access mode is permitted. * eval.c (rb_eval): while/until returns the value which is given to break. * parse.y (value_expr): using while/until/class/def as an expression is now gives a warning, not an error. * range.c (range_eqq): should compare strings based on magical increment (using String#upto), not dictionary order. * enum.c (enum_sort_by): new method for Schewartzian transformed stable sort. * variable.c (mod_av_set): detect constant overriding for built-in classes/modules. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1707 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Aug 23, 2001
1 parent
e15efe7
commit 1289a7a
Showing
15 changed files
with
176 additions
and
42 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,9 +1,53 @@ | ||
Thu Aug 23 10:10:59 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (is_defined): should not dump core for "defined?(())". | ||
|
||
* eval.c (umethod_bind): recv can be an instance of descender of | ||
oklass if oklass is a Module. | ||
|
||
Wed Aug 22 23:20:03 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* hash.c (rb_hash_equal): check identiry equality first. | ||
|
||
Tue Aug 21 22:28:09 2001 Nobuyoshi Nakada <[email protected]> | ||
|
||
* file.c (group_member): should check real gid only. | ||
|
||
* file.c (eaccess): do not cache euid, since effective euid may be | ||
changed via Process.euid=(). | ||
|
||
* file.c (eaccess): return -1 unless every specified access mode | ||
is permitted. | ||
|
||
Tue Aug 21 16:09:27 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (rb_eval): while/until returns the value which is given | ||
to break. | ||
|
||
* parse.y (value_expr): using while/until/class/def as an | ||
expression is now gives a warning, not an error. | ||
|
||
Tue Aug 21 11:56:02 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* range.c (range_eqq): should compare strings based on magical | ||
increment (using String#upto), not dictionary order. | ||
|
||
Mon Aug 20 19:53:16 2001 WATANABE Hirofumi <[email protected]> | ||
|
||
* ext/digest/sha2/extconf.rb: fix support for cross-compiling. | ||
|
||
* mkconfig.rb: fix support for autoconf 2.52. | ||
|
||
Mon Aug 20 17:24:15 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* enum.c (enum_sort_by): new method for Schewartzian transformed | ||
stable sort. | ||
|
||
Mon Aug 20 16:09:05 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* variable.c (mod_av_set): detect constant overriding for built-in | ||
classes/modules. | ||
|
||
Mon Aug 20 15:14:27 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* parse.y (tokadd_escape): escaped backslashes too much. | ||
|
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
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.