diff options
author | Martin Rudalics <rudalics@gmx.at> | 2015-12-22 09:19:21 +0100 |
---|---|---|
committer | Martin Rudalics <rudalics@gmx.at> | 2015-12-22 09:19:21 +0100 |
commit | 8fe2adc8a8732959057b116e5e16889698924644 (patch) | |
tree | 16da6fae40c3571e91f77b71ef55ee6217349143 | |
parent | 33efb6d60614131e1504b29885bf8b82f7c1b3cb (diff) | |
download | emacs-8fe2adc8a8732959057b116e5e16889698924644.tar.gz |
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.el | 3 |
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." (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 |