Remove tui_first_data_element_no_in_line
authorTom Tromey <tom@tromey.com>
Sat, 22 Jun 2019 17:50:19 +0000 (11:50 -0600)
committerTom Tromey <tom@tromey.com>
Sat, 22 Jun 2019 21:28:08 +0000 (15:28 -0600)
tui_first_data_element_no_in_line is never used.  This patch removes
it.  Tested by rebuilding, and by grep.

gdb/ChangeLog
2019-06-22  Tom Tromey  <tom@tromey.com>

* tui/tui-windata.h (tui_first_data_element_no_in_line): Don't
declare.
* tui/tui-windata.c (tui_first_data_element_no_in_line): Remove.

gdb/ChangeLog
gdb/tui/tui-windata.c
gdb/tui/tui-windata.h

index 78ea6cfb3eaba25e0976eaf6c991defd15b46026..29c568f5d3c3fec4460cd31acb943e9a6d7f70cc 100644 (file)
@@ -1,3 +1,9 @@
+2019-06-22  Tom Tromey  <tom@tromey.com>
+
+       * tui/tui-windata.h (tui_first_data_element_no_in_line): Don't
+       declare.
+       * tui/tui-windata.c (tui_first_data_element_no_in_line): Remove.
+
 2019-06-22  Tom Tromey  <tom@tromey.com>
 
        * tui/tui-data.h (tui_del_window, tui_del_data_windows): Don't
index 8616b6c47b9d1b6d97955fc33bc8aa753f60ab27..646adfbb74d0e155e9f35ccfdd091b5d812eef41 100644 (file)
@@ -64,23 +64,6 @@ tui_first_data_item_displayed (void)
 }
 
 
-/* Answer the index of the first element in line_no.  If line_no is
-   past the data area (-1) is returned.  */
-int
-tui_first_data_element_no_in_line (int line_no)
-{
-  int first_element_no = (-1);
-
-  /* First see if there is a register on line_no, and if so, set the
-     first element number.  */
-  if ((first_element_no = tui_first_reg_element_no_inline (line_no)) == -1)
-    { /* Looking at the general data, the 1st element on line_no.  */
-    }
-
-  return first_element_no;
-}
-
-
 /* Function to delete all the item windows in the data window.  This
    is usually done when the data window is scrolled.  */
 void
index 63fca0dd287dddadca094f27269f67e541290fac..56bf1ede9b42de83534424ebcbcecd2c31732720 100644 (file)
@@ -29,7 +29,6 @@ extern void tui_display_all_data (void);
 extern void tui_check_data_values (struct frame_info *);
 extern void tui_display_data_from_line (int);
 extern int tui_first_data_item_displayed (void);
-extern int tui_first_data_element_no_in_line (int);
 extern void tui_delete_data_content_windows (void);
 extern void tui_refresh_data_win (void);
 extern void tui_display_data_from (int, int);