mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-03-07 13:39:43 +08:00
gdb: remove command_class enum class_deprecated
The class_deprecated enumerator isn't assigned anywhere, so remove it. Commands that are deprecated have cmd_list_element::cmd_deprecated set instead. Change-Id: Ib35e540915c52aa65f13bfe9b8e4e22e6007903c
This commit is contained in:
parent
143f5a3837
commit
7ead06a8b6
@ -37,11 +37,7 @@ notify_command_param_changed_p (bool param_changed, struct cmd_list_element *c)
|
||||
if (!param_changed)
|
||||
return false;
|
||||
|
||||
if (c->theclass == class_maintenance || c->theclass == class_deprecated
|
||||
|| c->theclass == class_obscure)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
return c->theclass != class_maintenance && c->theclass != class_obscure;
|
||||
}
|
||||
|
||||
|
||||
|
@ -46,7 +46,6 @@ enum command_class
|
||||
Note that help accepts unambiguous abbreviated class names. */
|
||||
|
||||
/* Special classes to help_list */
|
||||
class_deprecated = -3,
|
||||
all_classes = -2, /* help without <classname> */
|
||||
all_commands = -1, /* all */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user