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