From 18e46b81fffb7c675515b151deed0f8b2a3a2c64 Mon Sep 17 00:00:00 2001 From: mame Date: Mon, 12 May 2008 14:42:17 +0000 Subject: * vm.c (collect_local_variables_in_env): remove unnecessary check which causes: x=1;proc{local_variables}.call #=> [] * test/ruby/test_variable.rb: add a test for above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16397 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'vm.c') diff --git a/vm.c b/vm.c index 58eabf37ac..ca73e4cb59 100644 --- a/vm.c +++ b/vm.c @@ -280,9 +280,6 @@ static int collect_local_variables_in_env(rb_env_t *env, VALUE ary) { int i; - if (env->block.lfp == env->block.dfp) { - return 0; - } for (i = 0; i < env->block.iseq->local_table_size; i++) { ID lid = env->block.iseq->local_table[i]; if (lid) { -- cgit v1.2.3