disabling was not as easy as it looked...

svn: r5471
This commit is contained in:
Matthew Flatt 2007-01-27 01:05:29 +00:00
parent fd2f6fc8ea
commit 3946c25fd9

View File

@ -209,11 +209,12 @@ static int rational_lt(const Scheme_Object *a, const Scheme_Object *b, int or_eq
return 0;
}
return 1;
} else if (or_eq) {
} else
#endif
if (or_eq) {
if (scheme_rational_eq(a, b))
return 1;
}
#endif
/* Checking only for lt at this point */