summaryrefslogtreecommitdiff
path: root/sb-eval2.lisp
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2013-07-15 09:33:21 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2013-07-15 09:33:21 +0200
commitd3146c8ace90aee2564c7ccc146f0128f5bad5e8 (patch)
treef4b53dd02d0720033d0e0eb983a272a0e011356e /sb-eval2.lisp
parentf49af7efdffa2fb7a8b579965bd9325baa8e946d (diff)
Add a (wrong) definition of LOAD-TIME-VALUE.
Diffstat (limited to 'sb-eval2.lisp')
-rw-r--r--sb-eval2.lisp4
1 files changed, 4 insertions, 0 deletions
diff --git a/sb-eval2.lisp b/sb-eval2.lisp
index 4220e94..61aafae 100644
--- a/sb-eval2.lisp
+++ b/sb-eval2.lisp
@@ -690,6 +690,10 @@
(funcall val env))
(funcall more new-env)))))))))
(prepare-let* bindings context))))
+ ((load-time-value)
+ (let ((load-form (cadr form)))
+ ;; FIXME
+ (prepare-form load-form)))
((locally)
(prepare-nil))
((multiple-value-call)