]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/windmove.el (windmove-swap-states-in-direction): Don't swap minibuffer.
authorJuri Linkov <juri@linkov.net>
Tue, 16 May 2023 17:32:34 +0000 (20:32 +0300)
committerJuri Linkov <juri@linkov.net>
Tue, 16 May 2023 17:32:34 +0000 (20:32 +0300)
Guard against swapping the minibuffer when the minibuffer is in the selected
window (bug#62427).  The function was already protected when the minibuffer
is in other-window.

lisp/windmove.el

index 06ce16c0d42aada58d274ce3bb46ae4f4db8d4b8..746a440bacb7fc6b3140d8a99f586c65236bdbcb 100644 (file)
@@ -724,6 +724,8 @@ from the opposite side of the frame."
                                            nil windmove-wrap-around 'nomini)))
     (cond ((or (null other-window) (window-minibuffer-p other-window))
            (user-error "No window %s from selected window" dir))
+          ((window-minibuffer-p (selected-window))
+           (user-error "Can't swap window with the minibuffer"))
           (t
            (window-swap-states nil other-window)))))