aboutsummaryrefslogtreecommitdiff
path: root/gdb/event-top.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2022-06-23 11:09:28 -0600
committerTom Tromey <tromey@adacore.com>2022-07-18 08:49:55 -0600
commitefd3baf0dcb38d7ecc2c8b4d1553254d3c022b7a (patch)
tree32c375e1e893117e20299cee54d30c1cb91e7679 /gdb/event-top.c
parent8f7f9b3a9142eeea50054b83e9bce12056bae6c9 (diff)
downloadgdb-efd3baf0dcb38d7ecc2c8b4d1553254d3c022b7a.zip
gdb-efd3baf0dcb38d7ecc2c8b4d1553254d3c022b7a.tar.gz
gdb-efd3baf0dcb38d7ecc2c8b4d1553254d3c022b7a.tar.bz2
Replace input_interactive_p with a method
This replaces the global input_interactive_p function with a new method ui::input_interactive_p.
Diffstat (limited to 'gdb/event-top.c')
-rw-r--r--gdb/event-top.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/event-top.c b/gdb/event-top.c
index 2863a8a..02b3786 100644
--- a/gdb/event-top.c
+++ b/gdb/event-top.c
@@ -687,7 +687,7 @@ handle_line_of_input (struct buffer *cmd_line_buffer,
}
/* Do history expansion if that is wished. */
- if (history_expansion_p && from_tty && input_interactive_p (current_ui))
+ if (history_expansion_p && from_tty && current_ui->input_interactive_p ())
{
char *cmd_expansion;
int expanded;
@@ -729,7 +729,7 @@ handle_line_of_input (struct buffer *cmd_line_buffer,
and then later fetch it from the value history and remove the
'#'. The kill ring is probably better, but some people are in
the habit of commenting things out. */
- if (*cmd != '\0' && from_tty && input_interactive_p (current_ui))
+ if (*cmd != '\0' && from_tty && current_ui->input_interactive_p ())
gdb_add_history (cmd);
/* Save into global buffer if appropriate. */