diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-05-17 14:01:08 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-05-17 14:01:08 -0400 |
commit | 14b42fc4a0edc412e02a6c9cfe7eb48e67da3145 (patch) | |
tree | 21dc1064114f57a24740462b0f30a2c5ca581635 /gdb/auto-load.c | |
parent | ecd0a6b35d32aa6aca913e2d0348cfdf7e78d6c3 (diff) | |
download | binutils-gdb-14b42fc4a0edc412e02a6c9cfe7eb48e67da3145.tar.gz |
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/auto-load.c')
-rw-r--r-- | gdb/auto-load.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/auto-load.c b/gdb/auto-load.c index b9478c45c53..7745aa65b03 100644 --- a/gdb/auto-load.c +++ b/gdb/auto-load.c @@ -1465,7 +1465,7 @@ info_auto_load_cmd (const char *args, int from_tty) { ui_out_emit_tuple option_emitter (uiout, "option"); - gdb_assert (!list->prefixlist); + gdb_assert (!list->subcommands); gdb_assert (list->type == not_set_cmd); uiout->field_string ("name", list->name); |