From fa4c0ca478a6c32442307e74b7dd5626bbf352a2 Mon Sep 17 00:00:00 2001 From: matz Date: Sat, 30 Aug 2003 00:04:02 +0000 Subject: * 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 --- ChangeLog | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 0421fd0d9..9e64f0d51 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +Sat Aug 30 03:58:21 2003 Yukihiro Matsumoto + + * 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 * 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 * ext/tk/lib/tkfont.rb TkFont.new() accepts compound fonts +Thu Aug 28 22:07:12 2003 Yukihiro Matsumoto + + * 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 * variable.c (rb_const_get_0): should check constants defined in -- cgit