diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-05-19 06:27:06 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-05-19 06:27:06 +0000 |
commit | db0b2bb24174aa7d960c01f63d2ac637f24ebbfb (patch) | |
tree | 430b40bc83914fdd8ac33c6c4e47e3c546af279b /object.c | |
parent | 6e52d10fe63fa99b6bfb12e5abb232c1165c804f (diff) |
* object.c (rb_mod_cmp): stupid comparison fixed.
* io.c (Init_IO): ARGF.path added (alias to ARGF.filename).
[ruby-dev:20197]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3821 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r-- | object.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -668,11 +668,10 @@ rb_mod_cmp(mod, arg) } cmp = rb_mod_le(mod, arg); - + if (NIL_P(cmp)) return Qnil; if (cmp) { return INT2FIX(-1); } - if (NIL_P(cmp)) return Qnil; return INT2FIX(1); } |