summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2019-07-18 14:34:39 -0600
committerTom Tromey <tom@tromey.com>2019-08-30 12:57:10 -0600
commit55b2657bdc4f9494c13f5b6f69dd7f67d72275c0 (patch)
tree8ff2a93882296a66141bafd3a15bb044320ace28
parent12a8555a5402b46da5ad39e29156c0d6b3a81a78 (diff)
downloadbinutils-gdb-55b2657bdc4f9494c13f5b6f69dd7f67d72275c0.tar.gz
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.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/tui/tui-io.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 981189e1785..6f35232897a 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
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.
Remove unnecessary forward declarations.
diff --git a/gdb/tui/tui-io.c b/gdb/tui/tui-io.c
index ac7f0982755..ee581a2ff66 100644
--- a/gdb/tui/tui-io.c
+++ b/gdb/tui/tui-io.c
@@ -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);
}