From a665bd594d58b256f6dde63dd49662d434b63ec0 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Fri, 15 May 1992 20:30:07 +0000 Subject: [PATCH] Added code to look for the EVAL situation in eval-whens, so we can interpret (eval-when (eval ...) ...) during the cold load. --- code/eval.lisp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/code/eval.lisp b/code/eval.lisp index 0e579199a..ea3864ce1 100644 --- a/code/eval.lisp +++ b/code/eval.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/eval.lisp,v 1.17 1992/04/20 19:07:57 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/eval.lisp,v 1.18 1992/05/15 20:30:07 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -168,6 +168,12 @@ (when (> args 0) (dolist (x (butlast (rest exp)) (eval (car (last exp)))) (eval x)))) + ((eval-when) + (if (and (> args 0) (member 'eval (second exp))) + (when (> args 1) + (dolist (x (butlast (cddr exp)) (eval (car (last exp)))) + (eval x))) + (eval:internal-eval original-exp))) (t (if (and (symbolp name) (eq (info function kind name) :function)) -- GitLab