aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-06-12 12:42:56 +0000
committerRichard M. Stallman <[email protected]>1994-06-12 12:42:56 +0000
commitcd72760ccafb47bfa2c38bbf7c6664e8defbd621 (patch)
treee4cf080a550806d7dd815484e8275d60b39f217e /src/keyboard.c
parent784450462fee3c4ecf4511aaf5be30d8a25899f5 (diff)
(read_char): When we loop and call redisplay,
do prepare_menu_bars first.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 6ff8789a5e..c29c07f027 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -1645,7 +1645,10 @@ read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
if (!NILP (c))
break;
if (commandflag >= 0 && !input_pending && !detect_input_pending ())
- redisplay ();
+ {
+ prepare_menu_bars ();
+ redisplay ();
+ }
}
/* Terminate Emacs in batch mode if at eof. */