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

ruby-changes:12311

From: wyhaines <ko1@a...>
Date: Fri, 10 Jul 2009 03:16:57 +0900 (JST)
Subject: [ruby-changes:12311] Ruby:r24006 (ruby_1_8_6): Pendantic change to remove surplus comma.

wyhaines	2009-07-10 03:16:38 +0900 (Fri, 10 Jul 2009)

  New Revision: 24006

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

  Log:
    Pendantic change to remove surplus comma.

  Modified files:
    branches/ruby_1_8_6/ChangeLog
    branches/ruby_1_8_6/node.h
    branches/ruby_1_8_6/version.h

Index: ruby_1_8_6/ChangeLog
===================================================================
--- ruby_1_8_6/ChangeLog	(revision 24005)
+++ ruby_1_8_6/ChangeLog	(revision 24006)
@@ -4,6 +4,8 @@
 
 	* gc.c: Fixes warning: passing argument 1 of 'add_freelist' makes pointer from integer without a cast
 
+	* node.h: Remove surplus comma
+
 Mon Jun  8 12:46:00 2009  Kirk Haines <khaines@r...>
 
 	* lib/soap/mimemessage.rb: Fixed a typo -- conent -> content
Index: ruby_1_8_6/version.h
===================================================================
--- ruby_1_8_6/version.h	(revision 24005)
+++ ruby_1_8_6/version.h	(revision 24006)
@@ -2,7 +2,7 @@
 #define RUBY_RELEASE_DATE "2009-06-08"
 #define RUBY_VERSION_CODE 186
 #define RUBY_RELEASE_CODE 20090608
-#define RUBY_PATCHLEVEL 371
+#define RUBY_PATCHLEVEL 372
 
 #define RUBY_VERSION_MAJOR 1
 #define RUBY_VERSION_MINOR 8
Index: ruby_1_8_6/node.h
===================================================================
--- ruby_1_8_6/node.h	(revision 24005)
+++ ruby_1_8_6/node.h	(revision 24006)
@@ -395,7 +395,7 @@
     THREAD_TO_KILL,
     THREAD_RUNNABLE,
     THREAD_STOPPED,
-    THREAD_KILLED,
+    THREAD_KILLED
 };
 
 typedef struct rb_thread *rb_thread_t;

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

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