diff options
author | Tom Tromey <tom@tromey.com> | 2020-05-03 11:31:19 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-05-03 11:31:20 -0600 |
commit | 3b6acaee895303e1800f5a9e3c20127c185a1209 (patch) | |
tree | d4b8cfaaf780a7794aee8d33ee3cb6c43a5fa497 /gdb/cli | |
parent | c69ad65744134f0c28432cc7c5204b9950f0b2c7 (diff) | |
download | gdb-3b6acaee895303e1800f5a9e3c20127c185a1209.zip gdb-3b6acaee895303e1800f5a9e3c20127c185a1209.tar.gz gdb-3b6acaee895303e1800f5a9e3c20127c185a1209.tar.bz2 |
Update more calls to add_prefix_cmd
I looked at all the calls to add_prefix_cmd, and replaced them with
calls to add_basic_prefix_cmd or add_show_prefix_cmd when appropriate.
This makes gdb's command language a bit more regular. I don't think
there's a significant downside.
Note that this patch removes a couple of tests. The removed ones are
completely redundant.
gdb/ChangeLog
2020-05-03 Tom Tromey <tom@tromey.com>
* breakpoint.c (catch_command, tcatch_command): Remove.
(_initialize_breakpoint): Use add_basic_prefix_cmd,
add_show_prefix_cmd.
(set_breakpoint_cmd, show_breakpoint_cmd): Remove
* utils.c (set_internal_problem_cmd, show_internal_problem_cmd):
Remove.
(add_internal_problem_command): Use add_basic_prefix_cmd,
add_show_prefix_cmd.
* mips-tdep.c (set_mipsfpu_command): Remove.
(_initialize_mips_tdep): Use add_basic_prefix_cmd.
* dwarf2/index-cache.c (set_index_cache_command): Remove.
(_initialize_index_cache): Use add_basic_prefix_cmd.
* memattr.c (dummy_cmd): Remove.
(_initialize_mem): Use add_basic_prefix_cmd, add_show_prefix_cmd.
* tui/tui-win.c (set_tui_cmd, show_tui_cmd): Remove.
(_initialize_tui_win): Use add_basic_prefix_cmd,
add_show_prefix_cmd.
* cli/cli-logging.c (set_logging_command): Remove.
(_initialize_cli_logging): Use add_basic_prefix_cmd,
add_show_prefix_cmd.
(show_logging_command): Remove.
* target.c (target_command): Remove.
(add_target): Use add_basic_prefix_cmd.
gdb/testsuite/ChangeLog
2020-05-03 Tom Tromey <tom@tromey.com>
* gdb.base/sepdebug.exp: Remove "catch" test.
* gdb.base/break.exp: Remove "catch" test.
* gdb.base/default.exp: Update expected output.
Diffstat (limited to 'gdb/cli')
-rw-r--r-- | gdb/cli/cli-logging.c | 49 |
1 files changed, 6 insertions, 43 deletions
diff --git a/gdb/cli/cli-logging.c b/gdb/cli/cli-logging.c index d7c1b77..a58cdce 100644 --- a/gdb/cli/cli-logging.c +++ b/gdb/cli/cli-logging.c @@ -165,55 +165,18 @@ set_logging_off (const char *args, int from_tty) saved_filename = NULL; } -static void -set_logging_command (const char *args, int from_tty) -{ - printf_unfiltered (_("\"set logging\" lets you log output to a file.\n" - "Usage: set logging on [FILENAME]\n" - " set logging off\n" - " set logging file FILENAME\n" - " set logging overwrite [on|off]\n" - " set logging redirect [on|off]\n")); -} - -static void -show_logging_command (const char *args, int from_tty) -{ - if (saved_filename) - printf_unfiltered (_("Currently logging to \"%s\".\n"), saved_filename); - if (saved_filename == NULL - || strcmp (logging_filename, saved_filename) != 0) - printf_unfiltered (_("Future logs will be written to %s.\n"), - logging_filename); - - if (logging_overwrite) - printf_unfiltered (_("Logs will overwrite the log file.\n")); - else - printf_unfiltered (_("Logs will be appended to the log file.\n")); - - if (logging_redirect) - printf_unfiltered (_("Output will be sent only to the log file.\n")); - else - printf_unfiltered (_("Output will be logged and displayed.\n")); - - if (debug_redirect) - printf_unfiltered (_("Debug output will be sent only to the log file.\n")); - else - printf_unfiltered (_("Debug output will be logged and displayed.\n")); -} - void _initialize_cli_logging (); void _initialize_cli_logging () { static struct cmd_list_element *set_logging_cmdlist, *show_logging_cmdlist; - add_prefix_cmd ("logging", class_support, set_logging_command, - _("Set logging options."), &set_logging_cmdlist, - "set logging ", 0, &setlist); - add_prefix_cmd ("logging", class_support, show_logging_command, - _("Show logging options."), &show_logging_cmdlist, - "show logging ", 0, &showlist); + add_basic_prefix_cmd ("logging", class_support, + _("Set logging options."), &set_logging_cmdlist, + "set logging ", 0, &setlist); + add_show_prefix_cmd ("logging", class_support, + _("Show logging options."), &show_logging_cmdlist, + "show logging ", 0, &showlist); add_setshow_boolean_cmd ("overwrite", class_support, &logging_overwrite, _("\ Set whether logging overwrites or appends to the log file."), _("\ Show whether logging overwrites or appends to the log file."), _("\ |