From 40fbb7a6d9c915466fb222df4b7fc395cbfccf00 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 16 Aug 2005 15:24:15 +0000 Subject: * eval.c (rb_add_method): preserve safe level in the environment where a method is defined . * eval.c (rb_call0): restore preserved safe level in the method execution. * parse.y (lambda): need separate block variable stack manipulation and lpar_beg maintenance. based on a patch found in [ruby-core:05551] from Mauricio Fernandez . * parse.y (parser_yylex): adjust lpar_beg after tLAMBEG and kDO_LAMBDA. [ruby-core:05551] * parse.y (yycompile): remove unreachable code. [yarv-dev:570] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8994 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 60ff0709a..7d5d19bb5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +Wed Aug 17 00:05:46 2005 Yukihiro Matsumoto + + * eval.c (rb_add_method): preserve safe level in the environment + where a method is defined . + + * eval.c (rb_call0): restore preserved safe level in the method + execution. + + * parse.y (lambda): need separate block variable stack + manipulation and lpar_beg maintenance. based on a patch found + in [ruby-core:05551] from Mauricio Fernandez . + + * parse.y (parser_yylex): adjust lpar_beg after tLAMBEG and + kDO_LAMBDA. [ruby-core:05551] + Mon Aug 15 07:24:38 2005 Nobuyoshi Nakada * intern.h (rb_check_to_integer): add declaration. @@ -11,6 +26,10 @@ Mon Aug 15 00:38:51 2005 Nobuyoshi Nakada * range.c (range_check, range_init): reduce uselse exceptions. +Mon Aug 15 00:34:11 2005 Yukihiro Matsumoto + + * parse.y (yycompile): remove unreachable code. [yarv-dev:570] + Sat Aug 13 22:16:12 2005 Minero Aoki * lib/fileutils.rb (remove_entry_secure): forgot final chdir. @@ -28,6 +47,7 @@ Sat Aug 13 21:11:05 2005 Masaki Suketa * ext/win32ole/tests/testOLEVARIANT.rb: ditto. +>>>>>>> 1.4488 Sat Aug 13 18:51:26 2005 Nobuyoshi Nakada * eval.c (rb_block_pass): distinguish current block from others. -- cgit