NextPrevUpTopContentsIndex

7.2 Removing advice

The macro delete-advice (or the function remove-advice ) may be used to remove a named piece of advice. Since several pieces of advice may be attached to a single functional definition, the name must be supplied to indicate which one is to be removed.

CL-USER 40 > (delete-advice reverse after-advice)
NIL
 
CL-USER 41 > (delete-advice reverse print-advice)
NIL

LispWorks User Guide - 11 Mar 2008

NextPrevUpTopContentsIndex