mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* object.c (rb_obj_cmp): [DOC] patched by Keith Bennett
<kbennett AT verisign.com>. [ruby-core:57887] [Backport #9024] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@43485 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
559ea47020
commit
ab05a6ddf7
3 changed files with 8 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
Thu Oct 31 23:22:35 2013 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* 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@gmail.com>
|
||||
|
||||
* test/dl/test_base.rb: {libc, libm} detection now handle GNU/Hurd
|
||||
|
|
|
|||
3
object.c
3
object.c
|
|
@ -1234,7 +1234,8 @@ rb_obj_not_match(VALUE obj1, VALUE obj2)
|
|||
* 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)
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue