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