From cf44b9b79750d55a88e90a88eac4fcd135f5d753 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 4 Mar 2004 16:49:23 +0000 Subject: [PATCH] (switch-to-buffer-other-window): Bind same-window-buffer-names and same-window-regexps to nil. (switch-to-buffer-other-frame): Likewise. --- lisp/files.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lisp/files.el b/lisp/files.el index 3b178af029b..a63aea99114 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -855,7 +855,9 @@ do not put this buffer at the front of the list of recently selected ones. This uses the function `display-buffer' as a subroutine; see its documentation for additional customization information." (interactive "BSwitch to buffer in other window: ") - (let ((pop-up-windows t)) + (let ((pop-up-windows t) + ;; Don't let these interfere. + same-window-buffer-names same-window-regexps) (pop-to-buffer buffer t norecord))) (defun switch-to-buffer-other-frame (buffer &optional norecord) @@ -866,7 +868,8 @@ do not put this buffer at the front of the list of recently selected ones. This uses the function `display-buffer' as a subroutine; see its documentation for additional customization information." (interactive "BSwitch to buffer in other frame: ") - (let ((pop-up-frames t)) + (let ((pop-up-frames t) + same-window-buffer-names same-window-regexps) (pop-to-buffer buffer t norecord) (raise-frame (window-frame (selected-window))))) -- 2.39.2