]> git.eshelyaron.com Git - emacs.git/commitdiff
Run find-function-after-hook after finding a symbol
authorTino Calancha <f92capac@gmail.com>
Mon, 25 Apr 2016 17:27:06 +0000 (19:27 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 23 Sep 2016 13:36:24 +0000 (16:36 +0300)
* lisp/emacs-lisp/find-func.el (find-library):
* lisp/help-mode.el (help-function-def, help-variable-def):
Run `find-function-after-hook' inside the help-function of the
buttons (bug#22583).
* etc/NEWS: Mention the change.

This is a backport from master.
(cherry picked from commit f069d854508946bcc03e4c77ceb430748e3ab6d7)

etc/NEWS
lisp/emacs-lisp/find-func.el
lisp/help-mode.el

index e86aec26d26e415c90509ccda42fe246029a46c8..a61370bfee0a3edb7a5bafc6da714065effe06c3 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -17,7 +17,10 @@ with a prefix argument or by typing C-u C-h C-n.
 
 \f
 * Changes in Emacs 25.2
-This is a bug-fix release with no new features.
+This is a bug-fix release with (almost) no new features.
+
+** `find-library', `help-function-def' and `help-variable-def' now run
+`find-function-after-hook'.
 
 \f
 * Installation Changes in Emacs 25.1
index 43bcb420c36f437358dfc9f4f05daa4416b8c9c1..6f224ed92d302344f4115f18f7c4a82717b987ea 100644 (file)
@@ -283,7 +283,11 @@ LIBRARY should be a string (the name of the library)."
                         "Library name: ")
                       table nil nil nil nil def))))
   (let ((buf (find-file-noselect (find-library-name library))))
-    (condition-case nil (switch-to-buffer buf) (error (pop-to-buffer buf)))))
+    (condition-case nil
+        (prog1
+            (switch-to-buffer buf)
+          (run-hooks 'find-function-after-hook))
+      (error (pop-to-buffer buf)))))
 
 ;;;###autoload
 (defun find-function-search-for-symbol (symbol type library)
index 7b95e5fb04e195373974dc2423904b1f9ade86e8..e008698618c73a5acbdbb180d5d62b5485a77c46 100644 (file)
@@ -202,6 +202,7 @@ The format is (FUNCTION ARGS...).")
                   (let ((location
                          (find-function-search-for-symbol fun type file)))
                     (pop-to-buffer (car location))
+                        (run-hooks 'find-function-after-hook)
                     (if (cdr location)
                         (goto-char (cdr location))
                       (message "Unable to find location in file"))))
@@ -231,6 +232,7 @@ The format is (FUNCTION ARGS...).")
                     (setq file (help-C-file-name var 'var)))
                   (let ((location (find-variable-noselect var file)))
                     (pop-to-buffer (car location))
+                    (run-hooks 'find-function-after-hook)
                     (if (cdr location)
                       (goto-char (cdr location))
                       (message "Unable to find location in file"))))