diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2023-09-06 15:29:09 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2023-09-07 21:55:20 -0400 |
commit | bec941b342c86dcb61d017d988166ed7a68aba34 (patch) | |
tree | a4d25247a38d206eb0f7c7cb1b54bf60c3a3a698 /gdb/ui.c | |
parent | 8cde0346f2a7c2419cd91305e60bd1d3433ce403 (diff) | |
download | fsf-binutils-gdb-bec941b342c86dcb61d017d988166ed7a68aba34.zip fsf-binutils-gdb-bec941b342c86dcb61d017d988166ed7a68aba34.tar.gz fsf-binutils-gdb-bec941b342c86dcb61d017d988166ed7a68aba34.tar.bz2 |
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>
Diffstat (limited to 'gdb/ui.c')
-rw-r--r-- | gdb/ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -227,7 +227,7 @@ new_ui_command (const char *args, int from_tty) 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. */ stream.release (); |