We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67188e4 commit 5abc6efCopy full SHA for 5abc6ef
ulisp.hpp
@@ -7326,7 +7326,6 @@ object* eval (object* form, object* env) {
7326
builtin_t name = builtin(function->name);
7327
7328
if ((name == LET) || (name == LETSTAR)) {
7329
- bool old_tailcall = tailcall;
7330
if (args == NULL) error2(noargument);
7331
object* assigns = first(args);
7332
if (!listp(assigns)) error(notalist, assigns);
@@ -7348,7 +7347,6 @@ object* eval (object* form, object* env) {
7348
7347
form = sp_progn(forms, env);
7349
if (tstflag(TAILCALL)) {
7350
clrflag(TAILCALL);
7351
- tailcall = old_tailcall;
7352
goto EVAL;
7353
}
7354
return form;
0 commit comments