From 2ff1adfa79853dde77fe2698dd83e34b116daacc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Harboe?= Date: Wed, 27 Oct 2010 08:37:54 +0200 Subject: [PATCH] help: help now works on configuration commands MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit help would not show help for commands when the command interpreter was in the wrong mode, which means that e.g. "help newtap" didn't work, it wouldn't show the "jtag newtap" help as it was a configuration command. Signed-off-by: Øyvind Harboe --- src/helper/command.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/helper/command.c b/src/helper/command.c index 1bd8c4291..6762ad4d1 100644 --- a/src/helper/command.c +++ b/src/helper/command.c @@ -956,9 +956,6 @@ static void command_help_show_wrap(const char *str, unsigned n, unsigned n2) static COMMAND_HELPER(command_help_show, struct command *c, unsigned n, bool show_help, const char *match) { - if (!command_can_run(CMD_CTX, c)) - return ERROR_OK; - char *cmd_name = command_name(c, ' '); if (NULL == cmd_name) return -ENOMEM;