* 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.
(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."