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

ruby-changes:39464

From: ko1 <ko1@a...>
Date: Wed, 12 Aug 2015 18:01:09 +0900 (JST)
Subject: [ruby-changes:39464] ko1:r51545 (trunk): * class.c (move_refined_method): same as the last commit.

ko1	2015-08-12 18:00:56 +0900 (Wed, 12 Aug 2015)

  New Revision: 51545

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

  Log:
    * class.c (move_refined_method): same as the last commit.

  Modified files:
    trunk/ChangeLog
    trunk/class.c
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 51544)
+++ ChangeLog	(revision 51545)
@@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Wed Aug 12 18:00:17 2015  Koichi Sasada  <ko1@a...>
+
+	* class.c (move_refined_method): same as the last commit.
+
 Wed Aug 12 17:57:53 2015  Koichi Sasada  <ko1@a...>
 
 	* class.c, gc.c vm.c: use ID_TABLE_* instead of ST_*
Index: class.c
===================================================================
--- class.c	(revision 51544)
+++ class.c	(revision 51545)
@@ -920,7 +920,7 @@ move_refined_method(ID key, VALUE value, https://github.com/ruby/ruby/blob/trunk/class.c#L920
 	    new_me = rb_method_entry_clone(me);
 	    rb_id_table_insert(tbl, key, (VALUE)new_me);
 	    rb_method_entry_copy(me, orig_me);
-	    return ST_CONTINUE;
+	    return ID_TABLE_CONTINUE;
 	}
 	else {
 	    rb_id_table_insert(tbl, key, (VALUE)me);

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

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