aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/buff-menu.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/buff-menu.el b/lisp/buff-menu.el
index db6da4427d8..24cea7a4db2 100644
--- a/lisp/buff-menu.el
+++ b/lisp/buff-menu.el
@@ -163,9 +163,10 @@ Type q immediately to make the buffer menu go away and to restore
163previous window configuration." 163previous window configuration."
164 (interactive "P") 164 (interactive "P")
165;;; (setq Buffer-menu-window-config (current-window-configuration)) 165;;; (setq Buffer-menu-window-config (current-window-configuration))
166 (list-buffers arg) 166 ;; This order seems to let list-buffers set the value of point
167 ;; regardless of whether we are using the same buffer or another.
167 (pop-to-buffer "*Buffer List*") 168 (pop-to-buffer "*Buffer List*")
168 (forward-line 2) 169 (list-buffers arg)
169 (message 170 (message
170 "Commands: d, s, x, u; f, o, 1, 2, m, v; ~, %%; q to quit; ? for help.")) 171 "Commands: d, s, x, u; f, o, 1, 2, m, v; ~, %%; q to quit; ? for help."))
171 172