Don't call wrefresh from tui_cont_sig

tui_cont_sig does not need to call wrefresh, because this is already
done by tui_refresh_all_win.

gdb/ChangeLog
2019-08-30  Tom Tromey  <tom@tromey.com>

	* tui/tui-io.c (tui_cont_sig): Don't call wrefresh.
This commit is contained in:
Tom Tromey 2019-07-18 14:34:39 -06:00
parent 12a8555a54
commit 55b2657bdc
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2019-08-30 Tom Tromey <tom@tromey.com>
* tui/tui-io.c (tui_cont_sig): Don't call wrefresh.
2019-08-30 Tom Tromey <tom@tromey.com>
* tui/tui-stack.c (_initialize_tui_stack): Move later.

View File

@ -851,8 +851,6 @@ tui_cont_sig (int sig)
/* Force a refresh of the screen. */
tui_refresh_all_win ();
wrefresh (TUI_CMD_WIN->handle);
}
signal (sig, tui_cont_sig);
}