diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-30 00:04:02 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-30 00:04:02 +0000 |
| commit | fa4c0ca478a6c32442307e74b7dd5626bbf352a2 (patch) | |
| tree | 2018232d06deec66076a9ddff0988f737c367366 /ChangeLog | |
| parent | 12574146413addddc350c7aab7a579d89e05f2e4 (diff) | |
| download | ruby-fa4c0ca478a6c32442307e74b7dd5626bbf352a2.tar.gz ruby-fa4c0ca478a6c32442307e74b7dd5626bbf352a2.tar.xz ruby-fa4c0ca478a6c32442307e74b7dd5626bbf352a2.zip | |
* eval.c (struct BLOCK): remove BLOCKTAG, use scope instead.
* eval.c (POP_TAG): no longer propagate retval. retval is now set
directly by localjump_destination().
* eval.c (localjump_destination): new function to cast
return/break local jump.
* eval.c (rb_yield_0): stop TAG_RETURN/TAG_BREAK escaping.
* variable.c (rb_autoload_load): call const_missing if autoloading
constant is not defined to allow hook.
* eval.c (rb_eval): use rb_const_get_from() instead of
rb_const_get_at().
* eval.c (is_defined): forgot to check NODE_COLON3.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4462 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -1,3 +1,15 @@ +Sat Aug 30 03:58:21 2003 Yukihiro Matsumoto <matz@ruby-lang.org> + + * eval.c (struct BLOCK): remove BLOCKTAG, use scope instead. + + * eval.c (POP_TAG): no longer propagate retval. retval is now set + directly by localjump_destination(). + + * eval.c (localjump_destination): new function to cast + return/break local jump. + + * eval.c (rb_yield_0): stop TAG_RETURN/TAG_BREAK escaping. + Fri Aug 29 22:35:00 2003 Shigeo Kobayashi <shigek@ruby-lang.org> * bigdecimal.c *.html: The 2nd arg. for add,sub,mult, and div is 0, @@ -34,6 +46,16 @@ Fri Aug 29 17:30:15 2003 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> * ext/tk/lib/tkfont.rb TkFont.new() accepts compound fonts +Thu Aug 28 22:07:12 2003 Yukihiro Matsumoto <matz@ruby-lang.org> + + * variable.c (rb_autoload_load): call const_missing if autoloading + constant is not defined to allow hook. + + * eval.c (rb_eval): use rb_const_get_from() instead of + rb_const_get_at(). + + * eval.c (is_defined): forgot to check NODE_COLON3. + Thu Aug 28 17:30:24 2003 Yukihiro Matsumoto <matz@ruby-lang.org> * variable.c (rb_const_get_0): should check constants defined in |
