mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-14 00:17:33 +02:00
fixing recent change for SEXP_USE_NO_FEATURES builds
This commit is contained in:
parent
9380928e24
commit
bb50ac05e4
1 changed files with 1 additions and 1 deletions
2
sexp.c
2
sexp.c
|
@ -2307,7 +2307,7 @@ sexp sexp_read_raw (sexp ctx, sexp in) {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
sexp_push_char(ctx, c2, in);
|
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_USE_INFINITIES
|
||||||
if (sexp_stringp(res)) {
|
if (sexp_stringp(res)) {
|
||||||
str = sexp_string_data(res);
|
str = sexp_string_data(res);
|
||||||
|
|
Loading…
Add table
Reference in a new issue