-
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.
* struct.c (rb_struct_eql): should compare values with "eql?".
* range.c (range_check): <=> returns nil for invalid values; should check. * regex.c (re_compile_pattern): should not set RE_OPTIMIZE_ANCHOR, if anychar_repeat is enclosed by parentheses. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3695 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Apr 18, 2003
1 parent
18cdaa6
commit 6987b08
Showing
6 changed files
with
60 additions
and
16 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,8 +1,22 @@ | ||
Sat Apr 19 00:56:13 2003 Yukihiro Matsumoto <[email protected]> | ||
|
||
* struct.c (rb_struct_eql): should compare values with "eql?". | ||
|
||
Fri Apr 18 23:29:08 2003 Yukihiro Matsumoto <[email protected]> | ||
|
||
* range.c (range_check): <=> returns nil for invalid values; | ||
should check. | ||
|
||
Fri Apr 18 15:26:50 2003 NAKAMURA Usaku <[email protected]> | ||
|
||
* error.c (rb_raise): workaround for some implementations of | ||
vsnprintf. | ||
|
||
Fri Apr 18 02:23:42 2003 Yukihiro Matsumoto <[email protected]> | ||
|
||
* regex.c (re_compile_pattern): should not set RE_OPTIMIZE_ANCHOR, | ||
if anychar_repeat is enclosed by parentheses. | ||
|
||
Fri Apr 18 01:49:18 2003 Nobuyoshi Nakada <[email protected]> | ||
|
||
* util.c (ruby_strtod): improved conversion accuracy. | ||
|
@@ -51,13 +65,13 @@ Mon Apr 14 19:45:56 2003 Nobuyoshi Nakada <[email protected]> | |
|
||
Mon Apr 14 03:22:33 2003 Yukihiro Matsumoto <[email protected]> | ||
|
||
* rubyio.h (struct OpenFile): add error raise flag to finalizer. | ||
* rubyio.h (struct OpenFile): add noraise flag to finalizer. | ||
|
||
* io.c (Init_IO): define $/, $-0, and $\ as string-only | ||
variables. | ||
|
||
* string.c (rb_str_split_m): does not generate empty string if | ||
there's no match in the receiver. | ||
the receiver is empty. | ||
|
||
* io.c (fptr_finalize): should raise error on EBADF for readable | ||
IOs as well. | ||
|
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