[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Apply DOES NOT fail with call-next-method !
- To: Gregor.pa@Xerox.COM
- Subject: Apply DOES NOT fail with call-next-method !
- From: Rob Pettengill <rcp@sw.MCC.COM>
- Date: Tue, 6 Sep 88 15:31:57 CDT
- Cc: CommonLoops.pa@Xerox.COM
- In-reply-to: Gregor.pa@Xerox.COM's message of Tue, 6 Sep 88 09:33 PDT <19880906163304.6.GREGOR@PORTNOY.parc.xerox.com>
- Redistributed: CommonLoops.pa
mi culpa
WRONG for this use in CLOS
(apply 'call-next-method ... => (apply (symbol-function 'call-next-method) ...
RIGHT since call-next-method is lexically bound
(apply #'call-next-method ... => (apply (function call-next-method) ...
;rob