From 0891be0835883fc1159565b780d63954e6b09bd9 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 24 Jul 2019 21:05:10 -0600 Subject: Don't call refresh in tui_resize_all There's no reason to call refresh in tui_resize_all. This call flushes the curses window contents to the terminal -- but, because we're about the resize all the windows, we're going to be sending more data to the terminal momentarily. This patch removes the call. gdb/ChangeLog 2019-09-20 Tom Tromey * tui/tui-win.c (tui_resize_all): Don't call refresh. --- gdb/tui/tui-win.c | 1 - 1 file changed, 1 deletion(-) (limited to 'gdb/tui') diff --git a/gdb/tui/tui-win.c b/gdb/tui/tui-win.c index 7704473..8963da2 100644 --- a/gdb/tui/tui-win.c +++ b/gdb/tui/tui-win.c @@ -561,7 +561,6 @@ tui_resize_all (void) AIX 5.3 does not define clear. */ erase (); clearok (curscr, TRUE); - refresh (); switch (cur_layout) { case SRC_COMMAND: -- cgit v1.1