emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 4766fe1daf: * lisp/tab-bar.el (switch-to-buffer-other-tab): Use p


From: Juri Linkov
Subject: master 4766fe1daf: * lisp/tab-bar.el (switch-to-buffer-other-tab): Use pop-to-buffer (bug#55582).
Date: Mon, 23 May 2022 03:48:36 -0400 (EDT)

branch: master
commit 4766fe1daf9f1b3f711d3fe453840487601cce81
Author: Juri Linkov <juri@linkov.net>
Commit: Juri Linkov <juri@linkov.net>

    * lisp/tab-bar.el (switch-to-buffer-other-tab): Use pop-to-buffer 
(bug#55582).
    
    Replace display-buffer with pop-to-buffer that sets the current buffer
    explicitly.
---
 lisp/tab-bar.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lisp/tab-bar.el b/lisp/tab-bar.el
index 42c4b822bc..ddab71c52c 100644
--- a/lisp/tab-bar.el
+++ b/lisp/tab-bar.el
@@ -2320,9 +2320,9 @@ Interactively, prompt for the buffer to switch to."
   (declare (advertised-calling-convention (buffer-or-name) "28.1"))
   (interactive
    (list (read-buffer-to-switch "Switch to buffer in other tab: ")))
-  (display-buffer (window-normalize-buffer-to-switch-to buffer-or-name)
-                  '((display-buffer-in-tab)
-                    (inhibit-same-window . nil))))
+  (pop-to-buffer (window-normalize-buffer-to-switch-to buffer-or-name)
+                 '((display-buffer-in-tab)
+                   (inhibit-same-window . nil))))
 
 (defun find-file-other-tab (filename &optional wildcards)
   "Edit file FILENAME, in another tab.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]