[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
&aux and (call-next-method)
- To: CommonLoops.pa@Xerox.COM
- Subject: &aux and (call-next-method)
- From: kanderso@WILMA.BBN.COM
- Date: Fri, 27 May 88 15:37:04 -0400
- Cc: kanderson@WILMA.BBN.COM
- Redistributed: CommonLoops.pa
Apparently &aux variables get lost in the expansion of defmethod when
the method body contains (call-next-method...):
(defclass c () ())
;; This works fine
(defmethod method-1 ((a c) &aux l)
(setq l (list a)))
;; Here L is declared special.
(defmethod method-1 ((a c) &aux l)
(setq l (list a))
(call-next-method)
(print l))