summaryrefslogtreecommitdiff
path: root/lib/command.h
diff options
context:
space:
mode:
authorpaul <paul>2005-03-08 15:56:42 +0000
committerpaul <paul>2005-03-08 15:56:42 +0000
commit9c5d8562f8d24574ba1f43881d47cbc8ffc62027 (patch)
tree816690e607e208aa66b257fb9ef01ae8bd80acb6 /lib/command.h
parentb45da6f01612e8ec1938cacfe0ea0ef34ad1afca (diff)
2005-03-08 Paul Jakma <paul.jakma@sun.com>
* command.c: (cmd_describe_command_real) sign compile warning fix (cmd_complete_command_real) ditto. (config_list_cmd) Don't list hidden or deprecated commands, hiding these from tab completion is still to be done. * command.h: cmd attr enum should start at 1.
Diffstat (limited to 'lib/command.h')
-rw-r--r--lib/command.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/command.h b/lib/command.h
index 14808330..6fd42fa1 100644
--- a/lib/command.h
+++ b/lib/command.h
@@ -122,7 +122,7 @@ struct cmd_node
enum
{
- CMD_ATTR_DEPRECATED,
+ CMD_ATTR_DEPRECATED = 1,
CMD_ATTR_HIDDEN,
};