From cce3aa754b9c69741f664b517cbbf97a6397960b Mon Sep 17 00:00:00 2001 From: tadf Date: Sat, 5 Apr 2014 10:53:16 +0000 Subject: * ext/date/date_core.c (d_lite_cmp): should compare with #<. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45520 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/date/date_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/date') diff --git a/ext/date/date_core.c b/ext/date/date_core.c index 372f7bfd36..1685d15e61 100644 --- a/ext/date/date_core.c +++ b/ext/date/date_core.c @@ -6283,7 +6283,7 @@ d_lite_cmp(VALUE self, VALUE other) return INT2FIX(1); } } - else if (a_nth < b_nth) { + else if (f_lt_p(a_nth, b_nth)) { return INT2FIX(-1); } else { -- cgit v1.2.3