diff options
author | Pedro Alves <palves@redhat.com> | 2019-06-13 00:06:52 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2019-06-13 00:08:50 +0100 |
commit | cbba3ecd36f0f861e4e810fbd5415c9759080cdc (patch) | |
tree | 0ff7941e323a33afd43355872000ab351762f195 /gdb/cli/cli-cmds.c | |
parent | b9a3f8429b012b753e30a4222bd8e4cbba019fad (diff) | |
download | gdb-cbba3ecd36f0f861e4e810fbd5415c9759080cdc.zip gdb-cbba3ecd36f0f861e4e810fbd5415c9759080cdc.tar.gz gdb-cbba3ecd36f0f861e4e810fbd5415c9759080cdc.tar.bz2 |
Make check_for_argument skip whitespace after arg itself
Basically every caller of check_for_argument needs to skip space after
the argument. This patch makes check_for_argument do it itself.
Suggested by Philippe Waroquiers.
gdb/ChangeLog:
2019-06-13 Pedro Alves <palves@redhat.com>
* ax-gdb.c (agent_command_1): Remove skip_spaces call.
* breakpoint.c (watch_maybe_just_location): Remove skip_spaces
call.
* cli/cli-cmds.c (apropos_command): Remove skip_spaces call.
* cli/cli-utils.c (extract_info_print_args): Remove skip_spaces
calls.
(check_for_argument): Skip spaces after argument.
Diffstat (limited to 'gdb/cli/cli-cmds.c')
-rw-r--r-- | gdb/cli/cli-cmds.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gdb/cli/cli-cmds.c b/gdb/cli/cli-cmds.c index 5c44ba9..62f4d7f 100644 --- a/gdb/cli/cli-cmds.c +++ b/gdb/cli/cli-cmds.c @@ -1381,9 +1381,6 @@ apropos_command (const char *arg, int from_tty) { bool verbose = arg && check_for_argument (&arg, "-v", 2); - if (verbose) - arg = skip_spaces (arg); - if (arg == NULL || *arg == '\0') error (_("REGEXP string is empty")); |