From 97348a2dad5af9eb914767731ad708e7d84b56d3 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 16 Aug 2005 15:24:54 +0000 Subject: [PATCH] * 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@8996 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 1 - 1 file changed, 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 7d5d19bb51..a913bb31ec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -47,7 +47,6 @@ 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.