[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
- To: (BUG LISP) at MIT-ML There is a bug in macroexpand that is seen in the following
- Subject:
- From: DICK@MIT-ML
- Date: Tue, 1 Apr 81 18:27:15 GMT
- Original-date: 01/04/81 14:27:15 EDT
(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