diff options
author | Glenn Morris <rgm@gnu.org> | 2014-03-10 14:16:13 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-03-10 14:16:13 -0400 |
commit | ba1a5c78f2e3d4b6a9bea5e6bec6f3dbe50bec70 (patch) | |
tree | a41a8e4cfd54a650f16f2b85a6491e009e5f04b5 /lisp/emacs-lisp | |
parent | 4cafb413cc93ce62afd780b0df7cad5ccb49dcd8 (diff) | |
download | emacs-ba1a5c78f2e3d4b6a9bea5e6bec6f3dbe50bec70.tar.gz |
* lisp/emacs-lisp/advice.el (ad-add-advice, defadvice): Doc fix
remove references to deleted info nodes.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/advice.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/advice.el b/lisp/emacs-lisp/advice.el index 0340076720c..62d50728350 100644 --- a/lisp/emacs-lisp/advice.el +++ b/lisp/emacs-lisp/advice.el @@ -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...)" |