From: Gerd Moellmann Date: Mon, 15 Oct 2001 09:23:31 +0000 (+0000) Subject: (display-message-or-buffer): Pass the correct buffer X-Git-Tag: emacs-21.1~58 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=242d1cbd19e58a57cfe5dc1e82d23813b788afcd;p=emacs.git (display-message-or-buffer): Pass the correct buffer to `display-buffer'. --- diff --git a/lisp/simple.el b/lisp/simple.el index 010f6625348..f5e7aa7565a 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -1355,7 +1355,8 @@ and only used if a buffer is displayed." (t ;; Buffer (goto-char (point-min)) - (display-buffer message not-this-window frame)))))))) + (display-buffer (current-buffer) + not-this-window frame)))))))) ;; We have a sentinel to prevent insertion of a termination message