* lisp/emacs-lisp/advice.el (ad-add-advice, defadvice): Doc fix

remove references to deleted info nodes.
This commit is contained in:
Glenn Morris 2014-03-10 14:16:13 -04:00
parent 4cafb413cc
commit ba1a5c78f2
2 changed files with 6 additions and 4 deletions

View file

@ -2079,9 +2079,7 @@ mapped to the closest extremal position).
If FUNCTION was not advised already, its advice info will be
initialized. Redefining a piece of advice whose name is part of
the cache-id will clear the cache.
See Info node `(elisp)Computed Advice' for detailed documentation."
the cache-id will clear the cache."
(cond ((not (ad-is-advised function))
(ad-initialize-advice-info function)
(ad-set-advice-info-field
@ -3149,7 +3147,6 @@ time. This generates a compiled advised definition according to the current
advice state that will be used during activation if appropriate. Only use
this if the `defadvice' gets actually compiled.
See Info node `(elisp)Advising Functions' for comprehensive documentation.
usage: (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
[DOCSTRING] [INTERACTIVE-FORM]
BODY...)"