aboutsummaryrefslogtreecommitdiff
path: root/gdb/top.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2021-05-17 14:01:08 -0400
committerSimon Marchi <simon.marchi@polymtl.ca>2021-05-17 14:01:08 -0400
commit14b42fc4a0edc412e02a6c9cfe7eb48e67da3145 (patch)
tree21dc1064114f57a24740462b0f30a2c5ca581635 /gdb/top.c
parentecd0a6b35d32aa6aca913e2d0348cfdf7e78d6c3 (diff)
downloadfsf-binutils-gdb-14b42fc4a0edc412e02a6c9cfe7eb48e67da3145.zip
fsf-binutils-gdb-14b42fc4a0edc412e02a6c9cfe7eb48e67da3145.tar.gz
fsf-binutils-gdb-14b42fc4a0edc412e02a6c9cfe7eb48e67da3145.tar.bz2
gdb: rename cmd_list_element::prefixlist to subcommands
While browsing this code, I found the name "prefixlist" really confusing. I kept reading it as "list of prefixes". Which it isn't: it's a list of sub-commands, for a prefix command. I think that renaming it to "subcommands" would make things clearer. gdb/ChangeLog: * Rename "prefixlist" parameters to "subcommands" throughout. * cli/cli-decode.h (cmd_list_element) <prefixlist>: Rename to... <subcommands>: ... this. * cli/cli-decode.c (lookup_cmd_for_prefixlist): Rename to... (lookup_cmd_with_subcommands): ... this. Change-Id: I150da10d03052c2420aa5b0dee41f422e2a97928
Diffstat (limited to 'gdb/top.c')
-rw-r--r--gdb/top.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/top.c b/gdb/top.c
index 2eb68fd..a391e93 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -647,7 +647,7 @@ execute_command (const char *p, int from_tty)
if (c->theclass == class_user && c->user_commands)
execute_user_command (c, arg);
else if (c->theclass == class_user
- && c->prefixlist && !c->allow_unknown)
+ && c->subcommands && !c->allow_unknown)
/* If this is a user defined prefix that does not allow unknown
(in other words, C is a prefix command and not a command
that can be followed by its args), report the list of
@@ -659,7 +659,7 @@ execute_command (const char *p, int from_tty)
printf_unfiltered
("\"%s\" must be followed by the name of a subcommand.\n",
prefixname_no_space.c_str ());
- help_list (*c->prefixlist, prefixname.c_str (), all_commands,
+ help_list (*c->subcommands, prefixname.c_str (), all_commands,
gdb_stdout);
}
else if (c->type == set_cmd)