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

ruby-changes:13376

From: nobu <ko1@a...>
Date: Tue, 29 Sep 2009 13:33:28 +0900 (JST)
Subject: [ruby-changes:13376] Ruby:r25146 (trunk): * vm_method.c (rb_method_entry_eq): fixed a message.

nobu	2009-09-29 13:33:17 +0900 (Tue, 29 Sep 2009)

  New Revision: 25146

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

  Log:
    * vm_method.c (rb_method_entry_eq): fixed a message.

  Modified files:
    trunk/vm_method.c

Index: vm_method.c
===================================================================
--- vm_method.c	(revision 25145)
+++ vm_method.c	(revision 25146)
@@ -819,7 +819,7 @@
       case VM_METHOD_TYPE_OPTIMIZED:
 	return d1->body.optimize_type == d2->body.optimize_type;
       default:
-	rb_bug("rb_add_method: unsupported method type (%d)\n", d1->type);
+	rb_bug("rb_method_entry_eq: unsupported method type (%d)\n", d1->type);
 	return 0;
     }
 }

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

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