emacs-diffs
[Top][All Lists]
Advanced

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

master d9ab1027b1: Fix lisp/bs.el change in commit e0a057c16b of 2022-12


From: Juanma Barranquero
Subject: master d9ab1027b1: Fix lisp/bs.el change in commit e0a057c16b of 2022-12-07
Date: Fri, 16 Dec 2022 01:17:07 -0500 (EST)

branch: master
commit d9ab1027b18512e65c55d282fb3697f34a2277bb
Author: Juanma Barranquero <lekktu@gmail.com>
Commit: Juanma Barranquero <lekktu@gmail.com>

    Fix lisp/bs.el change in commit e0a057c16b of 2022-12-07
    
    * lisp/bs.el (bs-default-action-list): Before creating a window
    first try `display-buffer-reuse-window', but make sure it never
    chooses a window in another frame.
---
 lisp/bs.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lisp/bs.el b/lisp/bs.el
index d5e6030fac..c976ed283c 100644
--- a/lisp/bs.el
+++ b/lisp/bs.el
@@ -488,7 +488,9 @@ Used internally, only.")
   "<mouse-2>" #'bs-mouse-select
   "<mouse-3>" #'bs-mouse-select-other-frame)
 
-(defcustom bs-default-action-list '((display-buffer-below-selected)
+(defcustom bs-default-action-list '((display-buffer-reuse-window
+                                    display-buffer-below-selected)
+                                   (reusable-frames . nil)
                                    (window-height . window-min-height))
   "Default action list for showing the '*bs-selection*' buffer.
 



reply via email to

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