fixing recent change for SEXP_USE_NO_FEATURES builds

This commit is contained in:
Alex Shinn 2011-09-06 00:31:20 +09:00
parent 9380928e24
commit bb50ac05e4

2
sexp.c
View file

@ -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);