changeset 7857:e735b56f7423

(read_char): When we loop and call redisplay, do prepare_menu_bars first.
author Richard M. Stallman <rms@gnu.org>
date Sun, 12 Jun 1994 12:42:56 +0000
parents 9687141f6264
children 41f30d92485e
files src/keyboard.c
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/keyboard.c	Sat Jun 11 21:53:09 1994 +0000
+++ b/src/keyboard.c	Sun Jun 12 12:42:56 1994 +0000
@@ -1645,7 +1645,10 @@
       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.  */