mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
(display-message-or-buffer): Pass the correct buffer to `display-buffer'.
This commit is contained in:
parent
845e4cf4d4
commit
31252c009c
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2001-10-15 Miles Bader <miles@gnu.org>
|
||||
|
||||
* simple.el (display-message-or-buffer): Pass the correct buffer
|
||||
to `display-buffer'.
|
||||
|
||||
2001-10-14 Stefan Monnier <monnier@cs.yale.edu>
|
||||
|
||||
* progmodes/executable.el (executable-binary-suffixes): Make varalias.
|
||||
|
|
|
|||
|
|
@ -1305,7 +1305,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
|
||||
|
|
|
|||
Loading…
Reference in a new issue