mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 12:03:41 +08:00
gdb: remove interp_pre_command_loop
It is a trivial wrapper around the pre_command_loop method, remove it. Change-Id: Idb2c61f9b68988528006a9a9b2b528f43781eef4 Approved-By: Tom Tromey <tom@tromey.com>
This commit is contained in:
parent
8cde0346f2
commit
bec941b342
@ -262,16 +262,6 @@ command_interp (void)
|
|||||||
return current_ui->current_interpreter;
|
return current_ui->current_interpreter;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* See interps.h. */
|
|
||||||
|
|
||||||
void
|
|
||||||
interp_pre_command_loop (struct interp *interp)
|
|
||||||
{
|
|
||||||
gdb_assert (interp != NULL);
|
|
||||||
|
|
||||||
interp->pre_command_loop ();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* See interp.h */
|
/* See interp.h */
|
||||||
|
|
||||||
int
|
int
|
||||||
|
@ -261,10 +261,6 @@ extern void clear_interpreter_hooks (void);
|
|||||||
if it uses GDB's own simplified form of readline. */
|
if it uses GDB's own simplified form of readline. */
|
||||||
extern int interp_supports_command_editing (struct interp *interp);
|
extern int interp_supports_command_editing (struct interp *interp);
|
||||||
|
|
||||||
/* Called before starting an event loop, to give the interpreter a
|
|
||||||
chance to e.g., print a prompt. */
|
|
||||||
extern void interp_pre_command_loop (struct interp *interp);
|
|
||||||
|
|
||||||
/* List the possible interpreters which could complete the given
|
/* List the possible interpreters which could complete the given
|
||||||
text. */
|
text. */
|
||||||
extern void interpreter_completer (struct cmd_list_element *ignore,
|
extern void interpreter_completer (struct cmd_list_element *ignore,
|
||||||
|
@ -470,7 +470,7 @@ captured_command_loop ()
|
|||||||
|
|
||||||
/* Give the interpreter a chance to print a prompt, if necessary */
|
/* Give the interpreter a chance to print a prompt, if necessary */
|
||||||
if (ui->prompt_state != PROMPT_BLOCKED)
|
if (ui->prompt_state != PROMPT_BLOCKED)
|
||||||
interp_pre_command_loop (top_level_interpreter ());
|
top_level_interpreter ()->pre_command_loop ();
|
||||||
|
|
||||||
/* Now it's time to start the event loop. */
|
/* Now it's time to start the event loop. */
|
||||||
start_event_loop ();
|
start_event_loop ();
|
||||||
|
2
gdb/ui.c
2
gdb/ui.c
@ -227,7 +227,7 @@ new_ui_command (const char *args, int from_tty)
|
|||||||
|
|
||||||
set_top_level_interpreter (interpreter_name);
|
set_top_level_interpreter (interpreter_name);
|
||||||
|
|
||||||
interp_pre_command_loop (top_level_interpreter ());
|
top_level_interpreter ()->pre_command_loop ();
|
||||||
|
|
||||||
/* Make sure the file is not closed. */
|
/* Make sure the file is not closed. */
|
||||||
stream.release ();
|
stream.release ();
|
||||||
|
Loading…
Reference in New Issue
Block a user