diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2013-07-18 16:19:43 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2013-07-18 16:19:43 +0200 |
commit | 74e946c4e140fbde88b2fdccea1b32534f97e2e0 (patch) | |
tree | 4bd0575226320d19d28f1ed9b074ba39b4a445b8 | |
parent | 276cf33d42cebc47e0cea7abb205f358c0f5cd38 (diff) |
PREPARE-PROGN: Fix a typo.
-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) |