-
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.
* file.c (rb_find_file_ext): should not terminate searching with
empty path, just ignore. * dir.c: remove <sys/parm.h> inclusion. * compar.c (cmp_eq,cmp_gt,cmp_ge,cmp_lt,cmp_le): check using rb_cmpint(). * error.c (init_syserr): remove sys_nerr dependency. * numeric.c (num_cmp): added to satisfy Comparable assumption. * eval.c (rb_add_method): "initialize" should be public if it is a singleton method. * regex.c (re_match): avoid dereferencing if size == 0. (ruby-bugs-ja:PR#360) * time.c (time_cmp): should return nil if an operand is not a number nor time. (ruby-bugs-ja:PR#359) * file.c (rb_stat_cmp): should return nil if an operand is not File::Stat. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3076 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Nov 22, 2002
1 parent
8347974
commit e2d384d
Showing
14 changed files
with
103 additions
and
91 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,40 @@ Thu Nov 21 20:01:33 2002 Minero Aoki <[email protected]> | |
* lib/net/http.rb: support Proxy-Authorization. | ||
(This patch is contributed by Alexander Bokovoy) | ||
|
||
Thu Nov 21 11:03:39 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* file.c (rb_find_file_ext): should not terminate searching with | ||
empty path, just ignore. | ||
|
||
* dir.c: remove <sys/parm.h> inclusion. | ||
|
||
Wed Nov 20 02:07:12 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* compar.c (cmp_eq,cmp_gt,cmp_ge,cmp_lt,cmp_le): check using | ||
rb_cmpint(). | ||
|
||
* error.c (init_syserr): remove sys_nerr dependency. | ||
|
||
Wed Nov 20 01:52:21 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* numeric.c (num_cmp): added to satisfy Comparable assumption. | ||
|
||
* eval.c (rb_add_method): "initialize" should be public if it is a | ||
singleton method. | ||
|
||
Tue Nov 19 22:37:23 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* regex.c (re_match): avoid dereferencing if size == 0. | ||
(ruby-bugs-ja:PR#360) | ||
|
||
Tue Nov 19 20:40:39 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* time.c (time_cmp): should return nil if an operand is not a | ||
number nor time. (ruby-bugs-ja:PR#359) | ||
|
||
* file.c (rb_stat_cmp): should return nil if an operand is not | ||
File::Stat. | ||
|
||
Tue Nov 19 14:35:09 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* array.c (rb_ary_zip): iterates over items in the receiver. | ||
|
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.