aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-03-10 14:16:13 -0400
committerGlenn Morris2014-03-10 14:16:13 -0400
commitba1a5c78f2e3d4b6a9bea5e6bec6f3dbe50bec70 (patch)
treea41a8e4cfd54a650f16f2b85a6491e009e5f04b5
parent4cafb413cc93ce62afd780b0df7cad5ccb49dcd8 (diff)
downloademacs-ba1a5c78f2e3d4b6a9bea5e6bec6f3dbe50bec70.tar.gz
emacs-ba1a5c78f2e3d4b6a9bea5e6bec6f3dbe50bec70.zip
* lisp/emacs-lisp/advice.el (ad-add-advice, defadvice): Doc fix
remove references to deleted info nodes.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/emacs-lisp/advice.el5
2 files changed, 6 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 04b85f0ecd2..cbabd6c18bb 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12014-03-10 Glenn Morris <rgm@gnu.org>
2
3 * emacs-lisp/advice.el (ad-add-advice, defadvice):
4 Doc fix: remove references to deleted info nodes.
5
12014-03-10 Michael Albinus <michael.albinus@gmx.de> 62014-03-10 Michael Albinus <michael.albinus@gmx.de>
2 7
3 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell): 8 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
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).
2079 2079
2080If FUNCTION was not advised already, its advice info will be 2080If FUNCTION was not advised already, its advice info will be
2081initialized. Redefining a piece of advice whose name is part of 2081initialized. Redefining a piece of advice whose name is part of
2082the cache-id will clear the cache. 2082the cache-id will clear the cache."
2083
2084See Info node `(elisp)Computed Advice' for detailed documentation."
2085 (cond ((not (ad-is-advised function)) 2083 (cond ((not (ad-is-advised function))
2086 (ad-initialize-advice-info function) 2084 (ad-initialize-advice-info function)
2087 (ad-set-advice-info-field 2085 (ad-set-advice-info-field
@@ -3149,7 +3147,6 @@ time. This generates a compiled advised definition according to the current
3149advice state that will be used during activation if appropriate. Only use 3147advice state that will be used during activation if appropriate. Only use
3150this if the `defadvice' gets actually compiled. 3148this if the `defadvice' gets actually compiled.
3151 3149
3152See Info node `(elisp)Advising Functions' for comprehensive documentation.
3153usage: (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...) 3150usage: (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
3154 [DOCSTRING] [INTERACTIVE-FORM] 3151 [DOCSTRING] [INTERACTIVE-FORM]
3155 BODY...)" 3152 BODY...)"