aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Rudalics2015-12-22 09:19:21 +0100
committerMartin Rudalics2015-12-22 09:19:21 +0100
commit8fe2adc8a8732959057b116e5e16889698924644 (patch)
tree16da6fae40c3571e91f77b71ef55ee6217349143
parent33efb6d60614131e1504b29885bf8b82f7c1b3cb (diff)
downloademacs-8fe2adc8a8732959057b116e5e16889698924644.tar.gz
emacs-8fe2adc8a8732959057b116e5e16889698924644.zip
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).
-rw-r--r--lisp/simple.el3
1 files changed, 1 insertions, 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."
3424 (t 3424 (t
3425 ;; Buffer 3425 ;; Buffer
3426 (goto-char (point-min)) 3426 (goto-char (point-min))
3427 (display-buffer (current-buffer) 3427 (display-buffer (current-buffer) action frame))))))))
3428 not-this-window frame))))))))
3429 3428
3430 3429
3431;; We have a sentinel to prevent insertion of a termination message 3430;; We have a sentinel to prevent insertion of a termination message