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

[no subject]



(defun bar macro (body) (cons '1+ (cdr body)))
BAR
(defun bar (x) (+ x x))
BAR
(bar 4)
8
(macroexpand '(bar 4))
(1+ 4)

   macroexpand uses a macro even if it is not the current functional
property in force.

				Dick Waters