[前][次][番号順一覧][スレッド一覧]

ruby-changes:7954

From: ko1 <ko1@a...>
Date: Tue, 23 Sep 2008 17:10:37 +0900 (JST)
Subject: [ruby-changes:7954] Ruby:r19476 (trunk): * class.c, vm_core.h: move decl of rb_iseq_clone() to class.c.

ko1	2008-09-23 17:10:20 +0900 (Tue, 23 Sep 2008)

  New Revision: 19476

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=19476

  Log:
    * class.c, vm_core.h: move decl of rb_iseq_clone() to class.c.

  Modified files:
    trunk/ChangeLog
    trunk/class.c
    trunk/vm_core.h

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 19475)
+++ ChangeLog	(revision 19476)
@@ -1,3 +1,7 @@
+Tue Sep 23 17:05:14 2008  Koichi Sasada  <ko1@a...>
+
+	* class.c, vm_core.h: move decl of rb_iseq_clone() to class.c.
+
 Tue Sep 23 17:02:47 2008  Tanaka Akira  <akr@f...>
 
 	* debug.h (ruby_set_debug_option): declared.
Index: vm_core.h
===================================================================
--- vm_core.h	(revision 19475)
+++ vm_core.h	(revision 19476)
@@ -455,7 +455,6 @@
 VALUE ruby_iseq_disasm(VALUE self);
 VALUE ruby_iseq_disasm_insn(VALUE str, VALUE *iseqval, int pos, rb_iseq_t *iseq, VALUE child);
 const char *ruby_node_name(int node);
-VALUE rb_iseq_clone(VALUE iseqval, VALUE newcbase);
 int rb_iseq_first_lineno(rb_iseq_t *iseq);
 
 RUBY_EXTERN VALUE rb_cISeq;
Index: class.c
===================================================================
--- class.c	(revision 19475)
+++ class.c	(revision 19476)
@@ -70,6 +70,8 @@
     VALUE klass;
 };
 
+VALUE rb_iseq_clone(VALUE iseqval, VALUE newcbase);
+
 static int
 clone_method(ID mid, NODE *body, struct clone_method_data *data)
 {

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]