diff options
-rw-r--r-- | sb-eval2.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sb-eval2.lisp b/sb-eval2.lisp index e3e2ed6..0d7033e 100644 --- a/sb-eval2.lisp +++ b/sb-eval2.lisp @@ -313,7 +313,7 @@ (last-form* (first (last body*)))) (lambda (env) (dolist (form* forms*) - (funcall (funcall (the eval-closure form*) env))) + (funcall (the eval-closure form*) env)) (funcall (the eval-closure last-form*) env)))))) (defun lambda-binding-vars (entry) |