mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-21 06:39:17 +02:00
fixing quote
This commit is contained in:
parent
efdf5b7861
commit
af7148ce02
1 changed files with 1 additions and 1 deletions
2
eval.c
2
eval.c
|
@ -285,7 +285,7 @@ sexp analyze (sexp x, sexp env) {
|
||||||
res = analyze_seq(x, env);
|
res = analyze_seq(x, env);
|
||||||
break;
|
break;
|
||||||
case CORE_QUOTE:
|
case CORE_QUOTE:
|
||||||
res = sexp_make_lit(x);
|
res = sexp_make_lit(sexp_cadr(x));
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
res = sexp_compile_error("unknown core form", sexp_list1(op));
|
res = sexp_compile_error("unknown core form", sexp_list1(op));
|
||||||
|
|
Loading…
Add table
Reference in a new issue