]> git.eshelyaron.com Git - emacs.git/commitdiff
* ibuffer.el (ibuffer-visit-buffer): To mimick list-buffers
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sat, 9 Oct 2010 13:23:29 +0000 (15:23 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Sat, 9 Oct 2010 13:23:29 +0000 (15:23 +0200)
behaviour, don't bury the ibuffer buffer when visiting other
buffers.

lisp/ChangeLog
lisp/ibuffer.el

index 78601413508f6833f2f395c0807eaee36607bad2..1b38724aa878678c293a7069890098c713222e31 100644 (file)
@@ -1,3 +1,9 @@
+2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * ibuffer.el (ibuffer-visit-buffer): To mimick list-buffers
+       behaviour, don't bury the ibuffer buffer when visiting other
+       buffers.
+
 2010-10-08  Chong Yidong  <cyd@stupidchicken.com>
 
        * cus-edit.el (custom-commands, custom-buffer-create-internal)
index 39a0bf0e85931c81c463e00c74cafe7baaa14955..4ba52cd2feb5d4b26ffb45bd7fc678a7acaee897 100644 (file)
@@ -1053,7 +1053,6 @@ If optional argument SINGLE is non-nil, then also ensure there is only
 one window."
   (interactive "P")
   (let ((buf (ibuffer-current-buffer t)))
-    (bury-buffer (current-buffer))
     (switch-to-buffer buf)
     (when single
       (delete-other-windows))))