ruby-changes:13324
From: nobu <ko1@a...>
Date: Fri, 25 Sep 2009 12:36:36 +0900 (JST)
Subject: [ruby-changes:13324] Ruby:r25088 (trunk): * vm_method.c (check_definition): fixed typo.
nobu 2009-09-25 12:36:26 +0900 (Fri, 25 Sep 2009) New Revision: 25088 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=25088 Log: * vm_method.c (check_definition): fixed typo. Modified files: trunk/vm_method.c Index: vm_method.c =================================================================== --- vm_method.c (revision 25087) +++ vm_method.c (revision 25088) @@ -681,7 +681,7 @@ #define VISI_CHECK(x,f) (((x)&NOEX_MASK) == (f)) static VALUE -check_definition(VALUE mod, VALUE mid, rb_method_flag_t noex) +check_definition(VALUE mod, ID mid, rb_method_flag_t noex) { const rb_method_entry_t *me; me = rb_method_entry(mod, mid); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/