1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* object.c (rb_obj_not_match): rdoc.

Patch by Kornelius Kalnbach.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21493 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yugui 2009-01-13 12:29:54 +00:00
parent c4554d20a6
commit e1809a0ced
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Tue Jan 13 21:28:14 2009 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* object.c (rb_obj_not_match): rdoc.
Patch by Kornelius Kalnbach.
Tue Jan 13 18:21:44 2009 NAKAMURA Usaku <usa@ruby-lang.org>
* io.c (rb_io_close_read): call rb_io_fptr_cleanup() instead of

View file

@ -1092,9 +1092,10 @@ rb_obj_match(VALUE obj1, VALUE obj2)
/*
* call-seq:
* obj !~ other => nil
* obj !~ other => true or false
*
* Returns true if two objects does not match, using <i>=~</i> method.
* Returns true if two objects do not match (using the <i>=~</i>
* method), otherwise false.
*/
static VALUE