diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/tui/tui-wingeneral.c | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9c8299b..4f20a78 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2019-08-30 Tom Tromey <tom@tromey.com> + * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Don't + call touchwin. + +2019-08-30 Tom Tromey <tom@tromey.com> + * tui/tui-wingeneral.c (box_win): Assume win_info and win_info->handle cannot be NULL. diff --git a/gdb/tui/tui-wingeneral.c b/gdb/tui/tui-wingeneral.c index 01f288b..f900eab 100644 --- a/gdb/tui/tui-wingeneral.c +++ b/gdb/tui/tui-wingeneral.c @@ -38,10 +38,7 @@ void tui_gen_win_info::refresh_window () { if (handle != NULL) - { - touchwin (handle); - wrefresh (handle); - } + wrefresh (handle); } /* Function to delete the curses window, checking for NULL. */ |