mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-25 11:04:18 +08:00
gdb: Use class_info when creating info commands.
The 'add_info' function is used for creating info commands, these commands should be created as 'class_info' rather than 'no_class'. gdb/ChangeLog: * cli/cli-decode.c (add_info): Switch to class_info.
This commit is contained in:
parent
be20f084f1
commit
f3575e0837
@ -1,3 +1,7 @@
|
||||
2015-11-11 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||
|
||||
* cli/cli-decode.c (add_info): Switch to class_info.
|
||||
|
||||
2015-11-09 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* ada-lang.c (ada_is_wrapper_field): Add special handling
|
||||
|
@ -855,7 +855,7 @@ delete_cmd (const char *name, struct cmd_list_element **list,
|
||||
struct cmd_list_element *
|
||||
add_info (const char *name, cmd_cfunc_ftype *fun, const char *doc)
|
||||
{
|
||||
return add_cmd (name, no_class, fun, doc, &infolist);
|
||||
return add_cmd (name, class_info, fun, doc, &infolist);
|
||||
}
|
||||
|
||||
/* Add an alias to the list of info subcommands. */
|
||||
|
Loading…
Reference in New Issue
Block a user