diff options
| author | Jim Blandy | 1993-02-14 14:39:09 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-02-14 14:39:09 +0000 |
| commit | 832a07261f026605a57c146fb023f8d3cce4fbb7 (patch) | |
| tree | b2450575b36739fe355fbebaee0dd2fe869cc8db /src/window.h | |
| parent | 7c1402521d3bc33b9104b0ed1101b3f80fb0ce92 (diff) | |
| download | emacs-832a07261f026605a57c146fb023f8d3cce4fbb7.tar.gz emacs-832a07261f026605a57c146fb023f8d3cce4fbb7.zip | |
* 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; | |||
| 225 | minibuf_prompt as well as the buffer. */ | 225 | minibuf_prompt as well as the buffer. */ |
| 226 | extern char *echo_area_glyphs; | 226 | extern char *echo_area_glyphs; |
| 227 | 227 | ||
| 228 | /* Value of echo_area_glyphs when it was last acted on. | ||
| 229 | If this is nonzero, there is a message on the frame | ||
| 230 | in the minibuffer and it should be erased as soon | ||
| 231 | as it is no longer requested to appear. */ | ||
| 232 | extern char *previous_echo_glyphs; | ||
| 233 | |||
| 228 | /* Depth in recursive edits. */ | 234 | /* Depth in recursive edits. */ |
| 229 | extern int command_loop_level; | 235 | extern int command_loop_level; |
| 230 | 236 | ||