From e6b9c72d637cb4dcf84011c7e637c3a61ddeca7c Mon Sep 17 00:00:00 2001 From: yugui Date: Wed, 28 Jan 2009 11:09:14 +0000 Subject: merges r21651 from trunk into ruby_1_9_1. * eval.c, vm_eval.c (rb_f_local_variables): move definition from eval.c to vm_eval.c because vm_collect_local_variables_in_heap() should be static function. * vm.c (vm_collect_local_variables_in_heap): make it static. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@21846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'vm.c') diff --git a/vm.c b/vm.c index b8b1fd2fd1..f056dc1832 100644 --- a/vm.c +++ b/vm.c @@ -373,9 +373,8 @@ collect_local_variables_in_env(rb_env_t * const env, const VALUE ary) return 0; } -int -vm_collect_local_variables_in_heap(rb_thread_t * const th, - VALUE * const dfp, const VALUE ary) +static int +vm_collect_local_variables_in_heap(rb_thread_t *th, VALUE *dfp, VALUE ary) { if (ENV_IN_HEAP_P(th, dfp)) { rb_env_t *env; -- cgit v1.2.3