[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: MACROLET & FUNCTION



there's another possibility, which is

[c] (MACROLET ((FOO ...)) (FUNCTION FOO))

	== (FUNCTION FOO)

i.e., MACROLET redefinitions are not seen by FUNCTION, but (FUNCTION
FOO) always refers to either the FLET or LABELS definition of FOO or
else the global definition.


(I have a definition of MACROLET which does this; I'm not willing to
argue that it is better than the others, but it is at least as
consistent.)