summaryrefslogtreecommitdiff
path: root/lisp/windmove.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@linkov.net>2020-07-19 02:43:18 +0300
committerJuri Linkov <juri@linkov.net>2020-07-19 02:43:18 +0300
commit8d05f21946fa846edf8d9c2c77e9e6cc066bbae5 (patch)
treea490712c8f5acb8fc7ba7909536619eabaf0d375 /lisp/windmove.el
parent77d35f28e5d8d45a00350bfc32d17bc4446e28dc (diff)
downloademacs-8d05f21946fa846edf8d9c2c77e9e6cc066bbae5.tar.gz
* lisp/window.el (display-buffer-override-next-command): Add ECHO arg.
* lisp/frame.el (other-frame-prefix): * lisp/tab-bar.el (other-tab-prefix): * lisp/windmove.el (windmove-display-in-direction): * lisp/window.el (other-window-prefix, same-window-prefix): Use new ECHO arg of display-buffer-override-next-command. https://lists.gnu.org/archive/html/emacs-devel/2020-06/msg00819.html
Diffstat (limited to 'lisp/windmove.el')
-rw-r--r--lisp/windmove.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/windmove.el b/lisp/windmove.el
index 341c739d924..65579600640 100644
--- a/lisp/windmove.el
+++ b/lisp/windmove.el
@@ -491,8 +491,8 @@ When `switch-to-buffer-obey-display-actions' is non-nil,
(cons window type)))
(lambda (old-window new-window)
(when (window-live-p (if no-select old-window new-window))
- (select-window (if no-select old-window new-window))))))
- (message "[display-%s]" dir))
+ (select-window (if no-select old-window new-window))))
+ (format "[display-%s]" dir))))
;;;###autoload
(defun windmove-display-left (&optional arg)