From 9c5d8562f8d24574ba1f43881d47cbc8ffc62027 Mon Sep 17 00:00:00 2001 From: paul Date: Tue, 8 Mar 2005 15:56:42 +0000 Subject: 2005-03-08 Paul Jakma * 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. --- lib/command.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/command.h') 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, }; -- cgit v1.2.1