Re: Lisp-aware editor for Windows?



Glen Able a écrit :

Symbols have slots for a function and a value but not for a special form or macro.

What does make you think that ? The function namespace is used also for special forms and macros.


[1]> (defmacro foo ())
FOO
[2]> (fboundp 'foo)
T
[3]> (fboundp 'if)
T
.