diff options
Diffstat (limited to 'gdb/inferior.c')
-rw-r--r-- | gdb/inferior.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/inferior.c b/gdb/inferior.c index 67d70c5..e8a28cd 100644 --- a/gdb/inferior.c +++ b/gdb/inferior.c @@ -1,6 +1,6 @@ /* Multi-process control for GDB, the GNU debugger. - Copyright (C) 2008-2024 Free Software Foundation, Inc. + Copyright (C) 2008-2025 Free Software Foundation, Inc. This file is part of GDB. @@ -167,9 +167,10 @@ inferior::tty () /* See inferior.h. */ void -inferior::set_args (gdb::array_view<char * const> args) +inferior::set_args (gdb::array_view<char * const> args, + bool escape_shell_char) { - set_args (construct_inferior_arguments (args)); + set_args (construct_inferior_arguments (args, escape_shell_char)); } void |