From: Mark Wooding Date: Thu, 1 Jun 2006 16:00:19 +0000 (+0100) Subject: base: compile-time-defun should define in the interpreter. X-Git-Url: https://git.distorted.org.uk/~mdw/lisp/commitdiff_plain/fe0f07ea19b36ce1abc1ec305d0203323cbf2316 base: compile-time-defun should define in the interpreter. --- diff --git a/mdw-base.lisp b/mdw-base.lisp index 8ba9a24..73f85e7 100644 --- a/mdw-base.lisp +++ b/mdw-base.lisp @@ -57,7 +57,7 @@ (defmacro compile-time-defun (name args &body body) "Define a function which can be used by macros during the compilation process." - `(eval-when (:compile-toplevel :load-toplevel) + `(eval-when (:compile-toplevel :load-toplevel :execute) (defun ,name ,args ,@body))) (defmacro show (x)