From 8fe2adc8a8732959057b116e5e16889698924644 Mon Sep 17 00:00:00 2001 From: Martin Rudalics Date: Tue, 22 Dec 2015 09:19:21 +0100 Subject: [PATCH] Fix `display-buffer' call in `display-message-or-buffer' (Bug#22221) * lisp/simple.el (display-message-or-buffer): Call `display-buffer' with ACTION instead of NOT-THIS-WINDOW (Bug#22221). --- lisp/simple.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/simple.el b/lisp/simple.el index 2abab5c597c..a22fe03a0ae 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -3424,8 +3424,7 @@ and are only used if a pop-up buffer is displayed." (t ;; Buffer (goto-char (point-min)) - (display-buffer (current-buffer) - not-this-window frame)))))))) + (display-buffer (current-buffer) action frame)))))))) ;; We have a sentinel to prevent insertion of a termination message -- 2.11.4.GIT