Dear List,
Nice work going on on the ABCL compiler. Thanks.
I have a file test1.lisp:
----- (in-package #:cl-user)
(macrolet ((%mac () '(+ 1 1))) (defun test () (%mac))) ----
Compiling it:
CL-USER(1): :cf test1.lisp ; Compiling test1.lisp ... ; (IN-PACKAGE #:CL-USER) ; (DEFUN TEST ...)
; Compilation unit finished ; The following functions were used but not defined: ; %MAC
I am not 100% sure, but I think the %MAC should be visible within TEST.
--- Martin.