From: Richard M. Stallman Date: Sun, 12 Jun 1994 12:42:56 +0000 (+0000) Subject: (read_char): When we loop and call redisplay, X-Git-Tag: emacs-19.34~7996 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cd72760ccafb47bfa2c38bbf7c6664e8defbd621;p=emacs.git (read_char): When we loop and call redisplay, do prepare_menu_bars first. --- diff --git a/src/keyboard.c b/src/keyboard.c index 6ff8789a5ed..c29c07f027b 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. */