Remove a call to show_source_line from TUI
authorTom Tromey <tom@tromey.com>
Mon, 28 Sep 2020 02:30:30 +0000 (20:30 -0600)
committerTom Tromey <tom@tromey.com>
Mon, 28 Sep 2020 02:30:31 +0000 (20:30 -0600)
This removes a call to show_source_line from tui_source_window_base.
This call isn't needed because this function already calls the
'refill' method if the state changed.

gdb/ChangeLog
2020-09-27  Tom Tromey  <tom@tromey.com>

* tui/tui-winsource.c
(tui_source_window_base::set_is_exec_point_at): Don't call
show_source_line.

gdb/ChangeLog
gdb/tui/tui-winsource.c

index f2d04c261112c92a86a575173346e0b71d255b61..c835fdb14ad952be1bff1cf82e64c8b8da10e2ee 100644 (file)
@@ -1,3 +1,9 @@
+2020-09-27  Tom Tromey  <tom@tromey.com>
+
+       * tui/tui-winsource.c
+       (tui_source_window_base::set_is_exec_point_at): Don't call
+       show_source_line.
+
 2020-09-27  Tom Tromey  <tom@tromey.com>
 
        * python/py-tui.c (class tui_py_window) <refresh_window>: New
index db0add996883d416c8e733a492e0bfbe706d2d2d..6723bad82ccc6745c91c45da0cfe805a77207c08 100644 (file)
@@ -411,7 +411,6 @@ tui_source_window_base::set_is_exec_point_at (struct tui_line_or_address l)
         {
           changed = true;
           m_content[i].is_exec_point = new_state;
-          show_source_line (i + 1);
         }
       i++;
     }