From eb1f89015e9c8de8e4f084aadb0f0811fd54371d Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 10 Mar 2008 15:48:35 +0000 Subject: * eval.c (rb_f_local_variables): local_variables should return an array of symbols. [ruby-dev:34008] * vm.c (collect_local_variables_in_env): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm.c') diff --git a/vm.c b/vm.c index d5a00c2fe1..38cde58139 100644 --- a/vm.c +++ b/vm.c @@ -285,7 +285,7 @@ collect_local_variables_in_env(rb_env_t *env, VALUE ary) for (i = 0; i < env->block.iseq->local_table_size; i++) { ID lid = env->block.iseq->local_table[i]; if (lid) { - rb_ary_push(ary, rb_str_dup(rb_id2str(lid))); + rb_ary_push(ary, ID2SYM(lid)); } } if (env->prev_envval) { -- cgit v1.2.3