src/term.c (tty_menu_activate): Flush the output stream after
showing the cursor, and don't mark the frame garbaged at exit from
the function. Fixes redisplay glitches when moving from one menu
to another.
+2013-10-09 Eli Zaretskii <eliz@gnu.org>
+
+ * term.c (tty_menu_activate): Flush the output stream after
+ showing the cursor, and don't mark the frame garbaged at exit from
+ the function. Fixes redisplay glitches when moving from one menu
+ to another.
+
2013-10-09 Jan Djärv <jan.h.d@swipnet.se>
* nsfns.m (Fns_convert_utf8_nfd_to_nfc): Check input for valid UTF-8
while (statecount--)
free_saved_screen (state[statecount].screen_behind);
tty_show_cursor (tty); /* turn cursor back on */
+ fflush (tty->output);
/* Clean up any mouse events that are waiting inside Emacs event queue.
These events are likely to be generated before the menu was even
discard_mouse_events ();
if (!kbd_buffer_events_waiting ())
clear_input_pending ();
- SET_FRAME_GARBAGED (sf);
return result;
}