1 ;; Load all Lisp files within WITH-COMPILATION-UNIT macro.
2 ;; This quiets the undefined function warnings from SBCL
3 ;; which are otherwise very voluminous (and this construct
4 ;; is accepted by other CL implementations).
6 #+gcl
(unless (macro-function 'with-compilation-unit
)
7 (defmacro with-compilation-unit
(a &rest b
) `(progn ,@b
)))
9 (with-compilation-unit nil
29 ($load
"resolcayley"))