1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00:00

(buffer-menu): Call pop-to-buffer before

list-buffers.  Don't move point afterwards.
This commit is contained in:
Richard M. Stallman 1994-07-12 07:31:35 +00:00
parent 8eeac2cebd
commit 95b9ce23a1

View File

@ -163,9 +163,10 @@ Type q immediately to make the buffer menu go away and to restore
previous window configuration."
(interactive "P")
;;; (setq Buffer-menu-window-config (current-window-configuration))
(list-buffers arg)
;; This order seems to let list-buffers set the value of point
;; regardless of whether we are using the same buffer or another.
(pop-to-buffer "*Buffer List*")
(forward-line 2)
(list-buffers arg)
(message
"Commands: d, s, x, u; f, o, 1, 2, m, v; ~, %%; q to quit; ? for help."))