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

ruby-changes:31406

From: usa <ko1@a...>
Date: Thu, 31 Oct 2013 23:24:28 +0900 (JST)
Subject: [ruby-changes:31406] usa:r43485 (ruby_1_9_3): * object.c (rb_obj_cmp): [DOC] patched by Keith Bennett

usa	2013-10-31 23:24:22 +0900 (Thu, 31 Oct 2013)

  New Revision: 43485

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

  Log:
    * object.c (rb_obj_cmp): [DOC] patched by Keith Bennett
      <kbennett AT verisign.com>.  [ruby-core:57887] [Backport #9024]

  Modified files:
    branches/ruby_1_9_3/ChangeLog
    branches/ruby_1_9_3/object.c
    branches/ruby_1_9_3/version.h
Index: ruby_1_9_3/ChangeLog
===================================================================
--- ruby_1_9_3/ChangeLog	(revision 43484)
+++ ruby_1_9_3/ChangeLog	(revision 43485)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ruby_1_9_3/ChangeLog#L1
+Thu Oct 31 23:22:35 2013  NAKAMURA Usaku  <usa@r...>
+
+	* object.c (rb_obj_cmp): [DOC] patched by Keith Bennett
+	  <kbennett AT verisign.com>.  [ruby-core:57887] [Backport #9024]
+
 Thu Oct 31 23:10:30 2013  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
 	* test/dl/test_base.rb: {libc, libm} detection now handle GNU/Hurd
Index: ruby_1_9_3/object.c
===================================================================
--- ruby_1_9_3/object.c	(revision 43484)
+++ ruby_1_9_3/object.c	(revision 43485)
@@ -1234,7 +1234,8 @@ rb_obj_not_match(VALUE obj1, VALUE obj2) https://github.com/ruby/ruby/blob/trunk/ruby_1_9_3/object.c#L1234
  *  call-seq:
  *     obj <=> other -> 0 or nil
  *
- *  Returns 0 if obj === other, otherwise nil.
+ * Returns 0 if +obj+ and +other+ are the same object
+ * or <code>obj == other</code>, otherwise nil.
  */
 static VALUE
 rb_obj_cmp(VALUE obj1, VALUE obj2)
Index: ruby_1_9_3/version.h
===================================================================
--- ruby_1_9_3/version.h	(revision 43484)
+++ ruby_1_9_3/version.h	(revision 43485)
@@ -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 473
+#define RUBY_PATCHLEVEL 474
 
 #define RUBY_RELEASE_DATE "2013-10-31"
 #define RUBY_RELEASE_YEAR 2013

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

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