]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/advice.el (ad-add-advice, defadvice): Doc fix
authorGlenn Morris <rgm@gnu.org>
Mon, 10 Mar 2014 18:16:13 +0000 (14:16 -0400)
committerGlenn Morris <rgm@gnu.org>
Mon, 10 Mar 2014 18:16:13 +0000 (14:16 -0400)
remove references to deleted info nodes.

lisp/ChangeLog
lisp/emacs-lisp/advice.el

index 04b85f0ecd2c3b0c70fd7476d1a9c243aa81adf9..cbabd6c18bb8842250b2bde9f7e891dc6c2aa824 100644 (file)
@@ -1,3 +1,8 @@
+2014-03-10  Glenn Morris  <rgm@gnu.org>
+
+       * emacs-lisp/advice.el (ad-add-advice, defadvice):
+       Doc fix: remove references to deleted info nodes.
+
 2014-03-10  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
index 0340076720c11a29bc5cd9998fb0f40ab3d22007..62d50728350d658f57b0ceaeb332b8c1fdbf5f5b 100644 (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...)"