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

Apply DOES NOT fail with call-next-method !



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