diff options
author | Jim Blandy <jimb@redhat.com> | 1993-02-14 14:39:09 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-02-14 14:39:09 +0000 |
commit | 832a07261f026605a57c146fb023f8d3cce4fbb7 (patch) | |
tree | b2450575b36739fe355fbebaee0dd2fe869cc8db /src/window.h | |
parent | 7c1402521d3bc33b9104b0ed1101b3f80fb0ce92 (diff) | |
download | emacs-832a07261f026605a57c146fb023f8d3cce4fbb7.tar.gz |
* dispnew.c (remake_frame_glyphs): When re-allocating the frame's
message buffer when echo_area_glyphs is pointing at it, relocate
echo_area_glyphs too. Same for previous_echo_glyphs.
* window.h (previous_echo_glyphs): Add extern declaration for this.
Diffstat (limited to 'src/window.h')
-rw-r--r-- | src/window.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/window.h b/src/window.h index 51a27157d59..000afe3466b 100644 --- a/src/window.h +++ b/src/window.h @@ -225,6 +225,12 @@ extern int minibuf_prompt_width; minibuf_prompt as well as the buffer. */ extern char *echo_area_glyphs; +/* Value of echo_area_glyphs when it was last acted on. + If this is nonzero, there is a message on the frame + in the minibuffer and it should be erased as soon + as it is no longer requested to appear. */ +extern char *previous_echo_glyphs; + /* Depth in recursive edits. */ extern int command_loop_level; |