From b057de2db4e59977139b7773d2b75794ffbc9892 Mon Sep 17 00:00:00 2001 From: ko1 Date: Mon, 19 Jan 2009 01:06:56 +0000 Subject: * iseq.c: rename ruby_iseq_disasm_insn() -> rb_iseq_disasm_insn(). rename ruby_iseq_disasm() -> rb_iseq_disasm(). * compile.c: rename ruby_iseq_compile() -> rb_iseq_compile_node(). rename ruby_iseq_translate_threaded_code() -> rb_iseq_translate_threaded_code(). rename ruby_insns_name_array() -> rb_insns_name_array(). rename ruby_iseq_build_from_ary() -> rb_iseq_build_from_ary(). * iseq.c, compile.c: remove ruby_insn_make_insn_table() and make static function insn_make_insn_table(). * iseq.h, ruby.c, vm.c, vm_core.h, vm_eval.c, vm_dump.c, blockinlining.c: ditto. Rename strange "ruby_" prefix to "rb_" prefix. This changes may affect only core because renamed functions require a pointer of rb_iseq_t which is not exposed. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21653 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 4c34c3e9a..ee50f0276 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,25 @@ +Mon Jan 19 09:53:43 2009 Koichi Sasada + + * iseq.c: + rename ruby_iseq_disasm_insn() -> rb_iseq_disasm_insn(). + rename ruby_iseq_disasm() -> rb_iseq_disasm(). + + * compile.c: + rename ruby_iseq_compile() -> rb_iseq_compile_node(). + rename ruby_iseq_translate_threaded_code() -> + rb_iseq_translate_threaded_code(). + rename ruby_insns_name_array() -> rb_insns_name_array(). + rename ruby_iseq_build_from_ary() -> rb_iseq_build_from_ary(). + + * iseq.c, compile.c: remove ruby_insn_make_insn_table() and make + static function insn_make_insn_table(). + + * iseq.h, ruby.c, vm.c, vm_core.h, vm_eval.c, vm_dump.c, + blockinlining.c: ditto. + Rename strange "ruby_" prefix to "rb_" prefix. + This changes may affect only core because renamed functions + require a pointer of rb_iseq_t which is not exposed. + Mon Jan 19 09:21:04 2009 NAKAMURA Usaku * ext/socket/mkconstants.rb: define macros with default value in -- cgit