All Manuals > LispWorks User Guide and Reference Manual > 38 The HCL Package

NextPrevUpTopContentsIndex

delete-advice

Macro
Summary

Removes a piece of advice.

Package

hcl

Signature

delete-advice function-dspec name => nil

Arguments

function-dspec

A function-dspec Specifies the function definition to which the piece of advice belongs. See Function dspecs for description of function-dspec.

name

A symbol naming the piece of advice to be removed. Since several pieces of advice may be attached to a single functional definition, the name is necessary to indicate which one is to be removed.

Values

delete-advice returns nil.

Description

delete-advice is used to remove a piece of advice. Advice is a way of altering the behavior of functions. Pieces of advice are associated with a function using defadvice. They define additional actions to be performed when the function is invoked, or alternative code to be performed instead of the function, which may or may not access the original definition. As well as being attached to ordinary functions, advice may be attached to methods and to macros (in this case it is in fact associated with the macro's expansion function).

remove-advice is a function, identical in effect to delete-advice, except that you need to quote the arguments.

Notes

delete-advice is an extension to Common Lisp.

See also

defadvice
remove-advice
The Advice Facility


LispWorks User Guide and Reference Manual - 20 Sep 2017

NextPrevUpTopContentsIndex