aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-08-07 10:34:08 +0000
committerGerd Moellmann <[email protected]>2000-08-07 10:34:08 +0000
commitff3d95733df693020bbbaa4d5acfc99cd4d4c08b (patch)
treebfab1bfe669c2b3a24215649354fbce57f80a4ec
parent9facfd265c43348d0088ecb76a285843f127e747 (diff)
(ensure_echo_area_buffers): If a buffer was killed and a
new buffer is created, make sure make sure echo_area_buffer[] references the new buffer.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--src/ChangeLog6
-rw-r--r--src/xdisp.c8
3 files changed, 19 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2b61e48dfe..414b42a903 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2000-08-07 Gerd Moellmann <[email protected]>
+
+ * files.el (shell-quote-wildcard-pattern): Make sure to return
+ PATTERN, in the Unix case.
+
2000-08-07 Eli Zaretskii <[email protected]>
* play/zone.el (zone): Discard any pending input before running
diff --git a/src/ChangeLog b/src/ChangeLog
index cbc2caca52..2ced3a8100 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
+2000-08-07 Gerd Moellmann <[email protected]>
+
+ * xdisp.c (ensure_echo_area_buffers): If a buffer was killed, and
+ a new buffer is created, make sure echo_area_buffer[] references
+ the new buffer.
+
2000-08-07 Eli Zaretskii <[email protected]>
* msdos.c (Fmsdos_set_mouse_buttons): Add missing backslashes in
diff --git a/src/xdisp.c b/src/xdisp.c
index ba2ae57966..da189e5b48 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -5438,9 +5438,17 @@ ensure_echo_area_buffers ()
|| NILP (XBUFFER (echo_buffer[i])->name))
{
char name[30];
+ Lisp_Object old_buffer;
+ int j;
+
+ old_buffer = echo_buffer[i];
sprintf (name, " *Echo Area %d*", i);
echo_buffer[i] = Fget_buffer_create (build_string (name));
XBUFFER (echo_buffer[i])->truncate_lines = Qnil;
+
+ for (j = 0; j < 2; ++j)
+ if (EQ (old_buffer, echo_area_buffer[j]))
+ echo_area_buffer[j] = echo_buffer[i];
}
}