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

ruby-changes:32669

From: usa <ko1@a...>
Date: Wed, 29 Jan 2014 18:53:41 +0900 (JST)
Subject: [ruby-changes:32669] usa:r44748 (ruby_1_9_3): * enumerator.c (enumerator_with_index_i): add the declaration of

usa	2014-01-29 18:53:36 +0900 (Wed, 29 Jan 2014)

  New Revision: 44748

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

  Log:
    * enumerator.c (enumerator_with_index_i): add the declaration of
      rb_int_succ().  this fixes test failure on OS X introduced at r44745.

  Modified files:
    branches/ruby_1_9_3/ChangeLog
    branches/ruby_1_9_3/enumerator.c
    branches/ruby_1_9_3/version.h
Index: ruby_1_9_3/ChangeLog
===================================================================
--- ruby_1_9_3/ChangeLog	(revision 44747)
+++ ruby_1_9_3/ChangeLog	(revision 44748)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ruby_1_9_3/ChangeLog#L1
+Wed Jan 29 18:52:09 2014  NAKAMURA Usaku  <usa@r...>
+
+	* enumerator.c (enumerator_with_index_i): add the declaration of
+	  rb_int_succ().  this fixes test failure on OS X introduced at r44745.
+
 Wed Jan 29 14:44:44 2014  Nobuyoshi Nakada  <nobu@r...>
 
 	* ext/date/date_strptime.c (date__strptime_internal): unset
Index: ruby_1_9_3/enumerator.c
===================================================================
--- ruby_1_9_3/enumerator.c	(revision 44747)
+++ ruby_1_9_3/enumerator.c	(revision 44748)
@@ -366,6 +366,8 @@ enumerator_each(VALUE obj) https://github.com/ruby/ruby/blob/trunk/ruby_1_9_3/enumerator.c#L366
     return enumerator_block_call(obj, 0, obj);
 }
 
+extern VALUE rb_int_succ(VALUE);
+
 static VALUE
 enumerator_with_index_i(VALUE val, VALUE m, int argc, VALUE *argv)
 {
Index: ruby_1_9_3/version.h
===================================================================
--- ruby_1_9_3/version.h	(revision 44747)
+++ ruby_1_9_3/version.h	(revision 44748)
@@ -1,5 +1,5 @@ https://github.com/ruby/ruby/blob/trunk/ruby_1_9_3/version.h#L1
 #define RUBY_VERSION "1.9.3"
-#define RUBY_PATCHLEVEL 501
+#define RUBY_PATCHLEVEL 502
 
 #define RUBY_RELEASE_DATE "2014-01-29"
 #define RUBY_RELEASE_YEAR 2014

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

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