X-Git-Url: https://git.distorted.org.uk/~mdw/lisp/blobdiff_plain/8a2e8de1d736200d9aa751b85d5f97af33b91150..fe0f07ea19b36ce1abc1ec305d0203323cbf2316:/mdw-base.lisp 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)