From ac0d0bb3009a14255278a369310309a0ea964187 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Mon, 4 Apr 2011 12:26:30 +0000 Subject: [PATCH] using appropriate max bound on equal? for all platforms --- sexp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sexp.c b/sexp.c index fec79103..08f958bf 100644 --- a/sexp.c +++ b/sexp.c @@ -714,7 +714,7 @@ sexp sexp_equalp_bound (sexp ctx sexp_api_params(self, n), sexp a, sexp b, sexp sexp sexp_equalp_op (sexp ctx sexp_api_params(self, n), sexp a, sexp b) { return sexp_make_boolean( sexp_truep(sexp_equalp_bound(ctx sexp_api_pass(self, n), a, b, - sexp_make_fixnum(1000000000)))); + sexp_make_fixnum(SEXP_MAX_FIXNUM)))); } /********************* strings, symbols, vectors **********************/