From: Gregory Heytings Date: Tue, 25 May 2021 19:40:02 +0000 (+0200) Subject: Do not switch to other window when minibuffer is selected X-Git-Tag: emacs-28.0.90~2334 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e365e903dbdbe0a4dee695e7b28cae7ab2eb2a5e;p=emacs.git Do not switch to other window when minibuffer is selected * lisp/window.el (handle-select-window): Do not silently switch to other window when minibuffer is selected and mouse-autoselect-window is t (Bug#47969). --- diff --git a/lisp/window.el b/lisp/window.el index 0f94d8a2141..fd1c617d6be 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -10055,6 +10055,9 @@ is active. This function is run by `mouse-autoselect-window-timer'." ;; already selected. (and (not (eq frame (selected-frame))) (frame-parameter frame 'no-accept-focus)) + ;; Don't switch if window autoselection with mouse is active + ;; and minibuffer window is selected. + (and mouse-autoselect-window (window-minibuffer-p)) ;; Don't switch to minibuffer window unless it's active. (and (window-minibuffer-p window) (not (minibuffer-window-active-p window))))