# HG changeset patch # User Richard M. Stallman # Date 867002283 0 # Node ID d515bf202434df5f1b23f03a6298bec57aade02a # Parent 1dd6f63f0ea3fb471df7f6ccbd6b502a78116fcf (Fdelete_frame): Clear echo_area_glyphs if it was in this frame. diff -r 1dd6f63f0ea3 -r d515bf202434 src/frame.c --- a/src/frame.c Sun Jun 22 09:16:07 1997 +0000 +++ b/src/frame.c Sun Jun 22 17:58:03 1997 +0000 @@ -1142,6 +1142,12 @@ Vframe_list = Fdelq (frame, Vframe_list); FRAME_SET_VISIBLE (f, 0); + if (echo_area_glyphs == FRAME_MESSAGE_BUF (f)) + { + echo_area_glyphs = 0; + previous_echo_glyphs = 0; + } + if (f->namebuf) free (f->namebuf); if (FRAME_CURRENT_GLYPHS (f))