From 619d86d0be63a32379200b64a56809745fb7e236 Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 23 Sep 2008 07:49:45 +0000 Subject: * include/ruby/node.h, vm_core.h: move definition of RUBY_VM_METHOD_NODE to node.h. * class.c, common.mk: remove useless inclusion. * compile.h, iseq.h, vm_core.h: rename compile.h to iseq.h. move some definitions from vm_core.h to iseq.h. * compile.c, iseq.c, vm.c: ditto. * eval.c, compile.c: move some functions for parser from eval.c to compile.c. * eval_intern.h, vm_core.h: move va_init_list() macro to vm_core.h. * iseq.c (rb_iseq_new_top, rb_iseq_first_lineno): added. * load.c, ruby.c: use rb_iseq_new_top() instead of rb_iseq_new() with ISEQ_TYPE_TOP constant directly. * proc.c: use rb_iseq_first_lineno() instead of accessing iseq structure. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19472 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 4303ca4c2..9a83ad0e1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,29 @@ +Tue Sep 23 16:41:31 2008 Koichi Sasada + + * include/ruby/node.h, vm_core.h: move definition of + RUBY_VM_METHOD_NODE to node.h. + + * class.c, common.mk: remove useless inclusion. + + * compile.h, iseq.h, vm_core.h: rename compile.h to iseq.h. + move some definitions from vm_core.h to iseq.h. + + * compile.c, iseq.c, vm.c: ditto. + + * eval.c, compile.c: move some functions for parser + from eval.c to compile.c. + + * eval_intern.h, vm_core.h: move va_init_list() macro to + vm_core.h. + + * iseq.c (rb_iseq_new_top, rb_iseq_first_lineno): added. + + * load.c, ruby.c: use rb_iseq_new_top() instead of + rb_iseq_new() with ISEQ_TYPE_TOP constant directly. + + * proc.c: use rb_iseq_first_lineno() instead of accessing + iseq structure. + Tue Sep 23 16:17:54 2008 Yukihiro Matsumoto * ext/ripper/eventids2.c (token_to_eventid): supper __ENCODING__ -- cgit