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

ruby-changes:8381

From: shyouhei <ko1@a...>
Date: Fri, 24 Oct 2008 19:26:03 +0900 (JST)
Subject: [ruby-changes:8381] Ruby:r19912 (trunk): * id.h (enum ruby_method_ids): ISO C forbids comma at end of

shyouhei	2008-10-24 19:24:01 +0900 (Fri, 24 Oct 2008)

  New Revision: 19912

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

  Log:
    * id.h (enum ruby_method_ids): ISO C forbids comma at end of
      enumerator list

  Modified files:
    trunk/ChangeLog
    trunk/id.h

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 19911)
+++ ChangeLog	(revision 19912)
@@ -1,3 +1,8 @@
+Fri Oct 24 19:16:36 2008  URABE Shyouhei  <shyouhei@r...>
+
+	* id.h (enum ruby_method_ids): ISO C forbids comma at end of
+	  enumerator list
+
 Fri Oct 24 18:29:00 2008  Keiju Ishitsuka  <keiju@r...>
 
 	* lib/mathn.rb: moved into ext/mathn/rational/rational.c and
Index: id.h
===================================================================
--- id.h	(revision 19911)
+++ id.h	(revision 19912)
@@ -174,10 +174,10 @@
     TOKEN2ID(Lambda),
     TOKEN2ID(Send),
     TOKEN2ID(__send__),
-    TOKEN2ID(Initialize),
+    TOKEN2ID(Initialize)
 #if SUPPORT_JOKE
-    TOKEN2ID(Bitblt),
-    TOKEN2ID(Answer),
+    ,TOKEN2ID(Bitblt)
+    ,TOKEN2ID(Answer)
 #endif
 };
 

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

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