aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-05-03 05:12:17 +0000
committerRichard M. Stallman1994-05-03 05:12:17 +0000
commit73168c8b2c07733f10451cd79a782d468216cf89 (patch)
treeca6c2170b6ba61d18568b677555e82830c655afd /src
parent6d6c9987ca490e96ce2f48f0a0ee8435f7edd446 (diff)
downloademacs-73168c8b2c07733f10451cd79a782d468216cf89.tar.gz
emacs-73168c8b2c07733f10451cd79a782d468216cf89.zip
(read_minibuf): Clear previous_echo_glyphs.
Diffstat (limited to 'src')
-rw-r--r--src/minibuf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index d325ebca5cc..190e644db6d 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -251,6 +251,8 @@ read_minibuf (map, initial, prompt, backup_n, expflag, histvar, histpos)
251 minibuf_prompt = (char *) alloca (XSTRING (prompt)->size + 1); 251 minibuf_prompt = (char *) alloca (XSTRING (prompt)->size + 1);
252 bcopy (XSTRING (prompt)->data, minibuf_prompt, XSTRING (prompt)->size + 1); 252 bcopy (XSTRING (prompt)->data, minibuf_prompt, XSTRING (prompt)->size + 1);
253 echo_area_glyphs = 0; 253 echo_area_glyphs = 0;
254 /* This is in case the minibuffer-setup-hook calls Fsit_for. */
255 previous_echo_glyphs = 0;
254 256
255 Vhelp_form = Vminibuffer_help_form; 257 Vhelp_form = Vminibuffer_help_form;
256 current_buffer->keymap = map; 258 current_buffer->keymap = map;