From 582b6241efe64b45aa8747a9dc2557c730ac889a Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 29 Jul 1998 23:04:03 +0000 Subject: [PATCH] (describe-function-1): Fix the code that uses find-function-noselect. --- lisp/help.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/help.el b/lisp/help.el index afe7f49e220..ba3c6d6d4cd 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -619,8 +619,8 @@ C-w Display information on absence of warranty for GNU Emacs." (help-xref-button 1 #'(lambda (arg) (let ((location (find-function-noselect arg))) - (display-buffer (nth 0 location)) - (goto-char (nth 1 location)))) + (pop-to-buffer (car location)) + (goto-char (cdr location)))) function))))) (if need-close (princ ")")) (princ ".") -- 2.39.2