aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2001-10-15 01:01:21 +0000
committerMiles Bader2001-10-15 01:01:21 +0000
commit31252c009cdf886f8e4f7eaff7a19e61fa385251 (patch)
treedd14007f4e8936c17ba06331a8008743d60f5906
parent845e4cf4d4ce8467528a9d96284052e42dc122b0 (diff)
downloademacs-31252c009cdf886f8e4f7eaff7a19e61fa385251.tar.gz
emacs-31252c009cdf886f8e4f7eaff7a19e61fa385251.zip
(display-message-or-buffer): Pass the correct buffer to `display-buffer'.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/simple.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c021cee952f..a77f5728ab5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12001-10-15 Miles Bader <miles@gnu.org>
2
3 * simple.el (display-message-or-buffer): Pass the correct buffer
4 to `display-buffer'.
5
12001-10-14 Stefan Monnier <monnier@cs.yale.edu> 62001-10-14 Stefan Monnier <monnier@cs.yale.edu>
2 7
3 * progmodes/executable.el (executable-binary-suffixes): Make varalias. 8 * progmodes/executable.el (executable-binary-suffixes): Make varalias.
diff --git a/lisp/simple.el b/lisp/simple.el
index b80a2bdf273..deb1737f4f9 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1305,7 +1305,8 @@ and only used if a buffer is displayed."
1305 (t 1305 (t
1306 ;; Buffer 1306 ;; Buffer
1307 (goto-char (point-min)) 1307 (goto-char (point-min))
1308 (display-buffer message not-this-window frame)))))))) 1308 (display-buffer (current-buffer)
1309 not-this-window frame))))))))
1309 1310
1310 1311
1311;; We have a sentinel to prevent insertion of a termination message 1312;; We have a sentinel to prevent insertion of a termination message