]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* interps.c (list_interpreter_cmd): Removed.
authorKeith Seitz <keiths@redhat.com>
Tue, 1 Oct 2002 16:21:53 +0000 (16:21 +0000)
committerKeith Seitz <keiths@redhat.com>
Tue, 1 Oct 2002 16:21:53 +0000 (16:21 +0000)
gdb/ChangeLog
gdb/interps.c

index 7eede2c4084923bd6f0dfe2a6a5dd288e772ea4b..6e1fe6ed0aec16594876f6988230d84ed6fd76ba 100644 (file)
@@ -2,6 +2,7 @@
 
        * interps.c (interpreter_exec_cmd): Remove mention of "mi" in
        error message.
+       (list_interpreter_cmd): Removed.
 
        * cli/cli-interp.c (do_captured_execute_command): New function.
        (safe_execute_command): New function.
index 0b33e710c7ca598f2f8657f0302aa5847db30d90..cbbcdeb5de292e63d9ffcc7beafb4a16d07d0a4c 100644 (file)
@@ -513,24 +513,6 @@ set_interpreter_cmd (char *args, int from_tty, struct cmd_list_element *c)
     }
 }
 
-/* list_interpreter_cmd - This implements "info interpreters". */
-
-void
-list_interpreter_cmd (char *args, int from_tty)
-{
-  struct gdb_interpreter *interp_ptr;
-
-  ui_out_list_begin (uiout, "interpreters");
-  for (interp_ptr = interp_list; interp_ptr != NULL;
-       interp_ptr = interp_ptr->next)
-    {
-      ui_out_text (uiout, "  * ");
-      ui_out_field_string (uiout, "interpreter", interp_ptr->name);
-      ui_out_text (uiout, "\n");
-    }
-  ui_out_list_end (uiout);
-}
-
 void
 interpreter_exec_cmd (char *args, int from_tty)
 {