gdb: remove interp_supports_command_editing
authorSimon Marchi <simon.marchi@efficios.com>
Wed, 6 Sep 2023 19:29:10 +0000 (15:29 -0400)
committerSimon Marchi <simon.marchi@efficios.com>
Fri, 8 Sep 2023 01:55:20 +0000 (21:55 -0400)
It is a trivial wrapper around the supports_command_editing method,
remove it.

Change-Id: I0fe3d7dc69601b3b89f82e055f7fe3d4af1becf7
Approved-By: Tom Tromey <tom@tromey.com>
gdb/event-top.c
gdb/interps.c
gdb/interps.h

index 005ef4b7054d46f3a5920e0ddb8d2fe233d738df..d1be23bcbe9b27c1abaf399ee93b9b0562b817fb 100644 (file)
@@ -299,8 +299,8 @@ change_line_handler (int editing)
 
   /* Don't try enabling editing if the interpreter doesn't support it
      (e.g., MI).  */
-  if (!interp_supports_command_editing (top_level_interpreter ())
-      || !interp_supports_command_editing (command_interp ()))
+  if (!top_level_interpreter ()->supports_command_editing ()
+      || !command_interp ()->supports_command_editing ())
     return;
 
   if (editing)
index fa294dfa1a3d629f4b4f8022b66a6c697c5ccb4a..adac98125239e68e3a8bc505091dbfe77f7ecdd4 100644 (file)
@@ -262,14 +262,6 @@ command_interp (void)
     return current_ui->current_interpreter;
 }
 
-/* See interp.h  */
-
-int
-interp_supports_command_editing (struct interp *interp)
-{
-  return interp->supports_command_editing ();
-}
-
 /* interp_exec - This executes COMMAND_STR in the current 
    interpreter.  */
 
index 95a885d1b691fc018c6db3b2a901b7dafdd229d7..287df2c8c810e202b9ecf4a4f08dcaf70ad9691f 100644 (file)
@@ -257,10 +257,6 @@ extern struct interp *command_interp (void);
 
 extern void clear_interpreter_hooks (void);
 
-/* Returns true if INTERP supports using the readline library; false
-   if it uses GDB's own simplified form of readline.  */
-extern int interp_supports_command_editing (struct interp *interp);
-
 /* List the possible interpreters which could complete the given
    text.  */
 extern void interpreter_completer (struct cmd_list_element *ignore,