aboutsummaryrefslogtreecommitdiff
path: root/src/primitives.c
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-06-25 22:59:47 +0800
committerMistivia <i@mistivia.com>2025-06-25 23:05:37 +0800
commit8cc69279f5f4e786b5795c5f185c5e949708761e (patch)
tree188b31eedacccf18171de3dd9262e415bcf15038 /src/primitives.c
parent44642d96eaef834b4bb846d27347ee681f9f5f7b (diff)
add char funcs
Diffstat (limited to 'src/primitives.c')
-rw-r--r--src/primitives.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/primitives.c b/src/primitives.c
index 8e56bf9..a8bb62a 100644
--- a/src/primitives.c
+++ b/src/primitives.c
@@ -207,7 +207,7 @@ SExpRef primitive_let(Interp *interp, SExpRef args, bool istail) {
while (!NILP(iter)) {
exp = CAR(iter);
if (NILP(CDR(iter))) {
- ret = lisp_eval(interp, exp, istail);
+ ret = lisp_eval(interp, exp, true);
goto end;
} else {
ret = EVAL(exp);