From cd87465d28ea819eea97fcb45a780058a03cfe78 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sun, 25 Feb 2007 01:34:33 +0000 Subject: * yarvcore.h: rename: rb_iseq_t#file_name -> filename rb_iseq_t#local_tbl -> local_table add: rb_iseq_t#local_table_size * compile.c: separate local_table_size and local_size (local variable size) * blockinlining.c: apply above rename. * compile.h: ditto. * eval.c: ditto. * iseq.c: ditto. * proc.c: ditto. * vm.c: ditto. * vm_dump.c: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11877 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index fffe7294b..5fd9c8c3f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,29 @@ +Sun Feb 25 09:39:50 2007 Koichi Sasada + + * yarvcore.h: + rename: + rb_iseq_t#file_name -> filename + rb_iseq_t#local_tbl -> local_table + add: + rb_iseq_t#local_table_size + + * compile.c: separate local_table_size and local_size + (local variable size) + + * blockinlining.c: apply above rename. + + * compile.h: ditto. + + * eval.c: ditto. + + * iseq.c: ditto. + + * proc.c: ditto. + + * vm.c: ditto. + + * vm_dump.c: ditto. + Sun Feb 25 10:27:17 2007 Minero Aoki * bootstraptest/runner.rb: add lib/ to load path. -- cgit