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:
Andrew Burgess 2015-11-07 11:14:20 +00:00
parent be20f084f1
commit f3575e0837
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -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. */