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

ruby-changes:18137

From: kazu <ko1@a...>
Date: Fri, 10 Dec 2010 11:43:54 +0900 (JST)
Subject: [ruby-changes:18137] Ruby:r30158 (trunk): remove a comma at end of enumerator list.

kazu	2010-12-10 11:42:06 +0900 (Fri, 10 Dec 2010)

  New Revision: 30158

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

  Log:
    remove a comma at end of enumerator list.

  Modified files:
    trunk/ChangeLog
    trunk/compile.c
    trunk/constant.h
    trunk/iseq.h
    trunk/vm_core.h

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 30157)
+++ ChangeLog	(revision 30158)
@@ -1,3 +1,17 @@
+Fri Dec 10 11:36:43 2010  Kazuhiro NISHIYAMA  <zn@m...>
+
+	* compile.c (enum): remove a comma at end of enumerator list.
+
+	* constant.h (rb_const_flag_t): ditto.
+
+	* iseq.h (enum catch_type): ditto.
+
+	* iseq.h (enum defined_type): ditto.
+
+	* vm_core.h (enum iseq_type): ditto.
+
+	* vm_core.h (enum vm_special_object_type): ditto.
+
 Fri Dec 10 10:47:53 2010  NARUSE, Yui  <naruse@r...>
 
 	* sprintf.c (_HAVE_SANE_QUAD_): Don't forget LP64, r30156.
Index: vm_core.h
===================================================================
--- vm_core.h	(revision 30157)
+++ vm_core.h	(revision 30158)
@@ -161,7 +161,7 @@
 	ISEQ_TYPE_ENSURE,
 	ISEQ_TYPE_EVAL,
 	ISEQ_TYPE_MAIN,
-	ISEQ_TYPE_DEFINED_GUARD,
+	ISEQ_TYPE_DEFINED_GUARD
     } type;              /* instruction sequence type */
 
     VALUE name;	         /* String: iseq name */
@@ -554,7 +554,7 @@
 enum vm_special_object_type {
     VM_SPECIAL_OBJECT_VMCORE = 1,
     VM_SPECIAL_OBJECT_CBASE,
-    VM_SPECIAL_OBJECT_CONST_BASE,
+    VM_SPECIAL_OBJECT_CONST_BASE
 };
 
 #define VM_FRAME_MAGIC_METHOD 0x11
Index: iseq.h
===================================================================
--- iseq.h	(revision 30157)
+++ iseq.h	(revision 30158)
@@ -51,7 +51,7 @@
 	CATCH_TYPE_RETRY,
 	CATCH_TYPE_BREAK,
 	CATCH_TYPE_REDO,
-	CATCH_TYPE_NEXT,
+	CATCH_TYPE_NEXT
     } type;
     VALUE iseq;
     unsigned long start;
@@ -107,7 +107,7 @@
     DEFINED_YIELD,
     DEFINED_REF,
     DEFINED_ZSUPER,
-    DEFINED_FUNC,
+    DEFINED_FUNC
 };
 
 #if defined __GNUC__ && __GNUC__ >= 4
Index: compile.c
===================================================================
--- compile.c	(revision 30157)
+++ compile.c	(revision 30158)
@@ -27,7 +27,7 @@
 	ISEQ_ELEMENT_NONE,
 	ISEQ_ELEMENT_LABEL,
 	ISEQ_ELEMENT_INSN,
-	ISEQ_ELEMENT_ADJUST,
+	ISEQ_ELEMENT_ADJUST
     } type;
     struct iseq_link_element *next;
     struct iseq_link_element *prev;
Index: constant.h
===================================================================
--- constant.h	(revision 30157)
+++ constant.h	(revision 30158)
@@ -13,7 +13,7 @@
 
 typedef enum {
     CONST_PUBLIC    = 0x00,
-    CONST_PRIVATE   = 0x01,
+    CONST_PRIVATE   = 0x01
 } rb_const_flag_t;
 
 typedef struct rb_const_entry_struct {

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

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