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

ruby-changes:13421

From: naruse <ko1@a...>
Date: Sat, 3 Oct 2009 00:46:21 +0900 (JST)
Subject: [ruby-changes:13421] Ruby:r25192 (trunk): * method.h (rb_method_type_t): remove a comma at end of

naruse	2009-10-03 00:45:09 +0900 (Sat, 03 Oct 2009)

  New Revision: 25192

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

  Log:
    * method.h (rb_method_type_t): remove a comma at end of
      enumerator list.

  Modified files:
    trunk/ChangeLog
    trunk/method.h

Index: method.h
===================================================================
--- method.h	(revision 25191)
+++ method.h	(revision 25192)
@@ -40,7 +40,7 @@
     VM_METHOD_TYPE_UNDEF,
     VM_METHOD_TYPE_NOTIMPLEMENTED,
     VM_METHOD_TYPE_OPTIMIZED, /* Kernel#send, Proc#call, etc */
-    VM_METHOD_TYPE_MISSING,   /* wrapper for method_missing(id) */
+    VM_METHOD_TYPE_MISSING   /* wrapper for method_missing(id) */
 } rb_method_type_t;
 
 typedef struct rb_method_cfunc_struct {
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 25191)
+++ ChangeLog	(revision 25192)
@@ -1,3 +1,8 @@
+Sat Oct  3 00:43:52 2009  NARUSE, Yui  <naruse@r...>
+
+	* method.h (rb_method_type_t): remove a comma at end of
+	  enumerator list.
+
 Sat Oct  3 00:31:04 2009  Nobuyoshi Nakada  <nobu@r...>
 
 	* range.c (discrete_object_p): needs the argument type to get rid

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

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