-
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.
* parse.y (yylex): ternary ? can be followed by newline.
* eval.c (rb_f_require): should check static linked libraries before raising exception. * array.c (rb_ary_equal): check identiry equality first. * string.c (rb_str_equal): ditto. * struct.c (rb_struct_equal): ditto. * numeric.c (Init_Numeric): undef Integer::new. * eval.c (rb_eval): NODE_WHILE should update result for each conditional evaluation. * eval.c (rb_eval): NODE_UNTIL should return last evaluated value (or value given to break). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1714 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Aug 29, 2001
1 parent
5f224f6
commit b47a994
Showing
15 changed files
with
100 additions
and
60 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,10 +1,39 @@ | ||
Wed Aug 29 02:18:53 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* parse.y (yylex): ternary ? can be followed by newline. | ||
|
||
Tue Aug 28 00:40:48 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (rb_f_require): should check static linked libraries | ||
before raising exception. | ||
|
||
Fri Aug 24 15:17:40 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* array.c (rb_ary_equal): check identiry equality first. | ||
|
||
* string.c (rb_str_equal): ditto. | ||
|
||
* struct.c (rb_struct_equal): ditto. | ||
|
||
Fri Aug 24 14:38:17 2001 Usaku Nakamura <[email protected]> | ||
|
||
* dln.c (dln_strerror): fix a bug that sometimes made null message on | ||
win32 (Tietew <[email protected]>'s patch). | ||
|
||
* win32/win32.c (mystrerror): ditto. | ||
|
||
Fri Aug 24 03:15:07 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* numeric.c (Init_Numeric): undef Integer::new. | ||
|
||
Fri Aug 24 00:46:44 2001 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (rb_eval): NODE_WHILE should update result for each | ||
conditional evaluation. | ||
|
||
* eval.c (rb_eval): NODE_UNTIL should return last evaluated value | ||
(or value given to break). | ||
|
||
Thu Aug 23 21:59:38 2001 Nobuyoshi Nakada <[email protected]> | ||
|
||
* enum.c (sort_by_i): fix typo. | ||
|
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.