-
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 (rb_clear_cache_by_class): new function.
* eval.c (set_method_visibility): should have clear cache forq updated visibility. * numeric.c (flo_to_s): default format precision to be "%.16g". * util.c (ruby_strtod): use own strtod(3) implementation to avoid locale hell. Due to this change "0xff".to_f no longer returns 255.0 * eval.c (avalue_to_yvalue): new function to distinguish yvalue (no-arg == Qundef) from svalue (no-arg == Qnil). * eval.c (rb_yield_0): use avalue_to_yvalue(). * eval.c (assign): warn if val == Qundef where it means rhs is void (e.g. yield without value or call without argument). * parse.y (value_expr): need not to warn for WHILE and UNTIL, since they can have return value (via valued break). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2457 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
May 14, 2002
1 parent
c5d6a1b
commit eb61189
Showing
34 changed files
with
377 additions
and
70 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 |
---|---|---|
|
@@ -4,10 +4,24 @@ Tue May 14 14:49:05 2002 WATANABE Hirofumi <[email protected]> | |
|
||
* missing/strftime.c (timezone): it should take no argument on Cygwin. | ||
|
||
Tue May 14 03:07:35 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (rb_clear_cache_by_class): new function. | ||
|
||
* eval.c (set_method_visibility): should have clear cache forq | ||
updated visibility. | ||
|
||
Mon May 13 14:38:33 2002 WATANABE Hirofumi <[email protected]> | ||
|
||
* djgpp/config.hin, djgpp/config.sed: catch up with the latest change. | ||
|
||
Mon May 13 01:59:55 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* numeric.c (flo_to_s): default format precision to be "%.16g". | ||
|
||
* util.c (ruby_strtod): use own strtod(3) implementation to avoid | ||
locale hell. Due to this change "0xff".to_f no longer returns 255.0 | ||
|
||
Sun May 12 03:01:08 2002 WATANABE Hirofumi <[email protected]> | ||
|
||
* missing.h: add for missing/*.c. | ||
|
@@ -26,6 +40,16 @@ Sat May 11 10:52:09 2002 Nobuyoshi Nakada <[email protected]> | |
|
||
* dir.c (glob_helper): remove escaping backslashes. | ||
|
||
Sat May 11 02:46:43 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (avalue_to_yvalue): new function to distinguish yvalue | ||
(no-arg == Qundef) from svalue (no-arg == Qnil). | ||
|
||
* eval.c (rb_yield_0): use avalue_to_yvalue(). | ||
|
||
* eval.c (assign): warn if val == Qundef where it means rhs is | ||
void (e.g. yield without value or call without argument). | ||
|
||
Fri May 10 19:00:47 2002 Nobuyoshi Nakada <[email protected]> | ||
|
||
* parse.y (here_document): preserve line number begins here | ||
|
@@ -38,6 +62,11 @@ Fri May 10 01:55:44 2002 Nobuyoshi Nakada <[email protected]> | |
|
||
* eval.c (rb_thread_join_m): new. and added optional argument. | ||
|
||
Wed May 8 23:48:40 2002 Yukihiro Matsumoto <[email protected]> | ||
|
||
* parse.y (value_expr): need not to warn for WHILE and UNTIL, | ||
since they can have return value (via valued break). | ||
|
||
Tue May 7 17:13:40 2002 WATANABE Hirofumi <[email protected]> | ||
|
||
* configure.in: forgot to add '-Wl,' to the gcc option on Cygwin/MinGW. | ||
|
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
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.