From bb50ac05e4f74155181124b92f8471586609ec3a Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Tue, 6 Sep 2011 00:31:20 +0900 Subject: [PATCH] fixing recent change for SEXP_USE_NO_FEATURES builds --- sexp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sexp.c b/sexp.c index 9fe47dbe..b72d9f59 100644 --- a/sexp.c +++ b/sexp.c @@ -2307,7 +2307,7 @@ sexp sexp_read_raw (sexp ctx, sexp in) { } } else { sexp_push_char(ctx, c2, in); - res = sexp_read_symbol(ctx, in, c1, 0); + res = sexp_read_symbol(ctx, in, c1, !SEXP_USE_INFINITIES); #if SEXP_USE_INFINITIES if (sexp_stringp(res)) { str = sexp_string_data(res);