]> git.eshelyaron.com Git - emacs.git/commitdiff
Make finder-exit use quit-window (Bug#33610)
authorStefan Kangas <stefankangas@gmail.com>
Thu, 11 Jul 2019 22:43:12 +0000 (00:43 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 20 Jul 2019 09:23:07 +0000 (12:23 +0300)
* lisp/finder.el (finder-exit): Quit window instead of
deleting.  This restores previous contents of the window,
if any, that was usurped by "C-h p" to show the list of
packages.

lisp/finder.el

index ad9441210c5a067699fe75e37e3fca6c50faaf25..89706cf7dbd47fa1e168c6bf361864fef54be0c4 100644 (file)
@@ -465,11 +465,12 @@ finder directory, \\[finder-exit] = quit, \\[finder-summary] = help")))
 
 (defun finder-exit ()
   "Exit Finder mode.
-Delete the window and kill all Finder-related buffers."
+Quit the window and kill all Finder-related buffers."
   (interactive)
-  (ignore-errors (delete-window))
   (let ((buf "*Finder*"))
-    (and (get-buffer buf) (kill-buffer buf))))
+    (if (equal (current-buffer) buf)
+        (quit-window t)
+      (and (get-buffer buf) (kill-buffer buf)))))
 
 (defun finder-unload-function ()
   "Unload the Finder library."