1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_3@384 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 1999-02-01 07:34:58 +00:00
parent 2344efc383
commit 9b0dd20cbb
30 changed files with 1172 additions and 944 deletions

View file

@ -47,7 +47,7 @@ int
rb_eql(obj1, obj2)
VALUE obj1, obj2;
{
return rb_funcall(obj1, eql, 1, obj2);
return rb_funcall(obj1, eql, 1, obj2) == Qtrue;
}
static VALUE