summaryrefslogtreecommitdiff
path: root/sb-eval2.lisp
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2013-07-18 16:19:43 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2013-07-18 16:19:43 +0200
commit74e946c4e140fbde88b2fdccea1b32534f97e2e0 (patch)
tree4bd0575226320d19d28f1ed9b074ba39b4a445b8 /sb-eval2.lisp
parent276cf33d42cebc47e0cea7abb205f358c0f5cd38 (diff)
PREPARE-PROGN: Fix a typo.
Diffstat (limited to 'sb-eval2.lisp')
-rw-r--r--sb-eval2.lisp2
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)