From 62a9e6b170d9c7474e77de31c46d5d35f0cda0ba Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 13 Jul 2018 10:29:28 -0700 Subject: let's keep it simple for now --- command.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/command.c b/command.c index 1703f99..f3b0e91 100644 --- a/command.c +++ b/command.c @@ -8,13 +8,6 @@ #include "util.h" -static const char * -bind_name_to_bind(const char *bind) { - if (strcmp(bind, "STR") == 0) - return " "; - return bind; -} - int command_is_prefix(struct command *cmd) { return cmd->nchildren > 0; @@ -35,7 +28,7 @@ command_num_children(struct command *cmd) { struct command * command_lookup(struct command *cmd, int ncmds, const char *binding) { for (int i = 0; i < ncmds; ++i) { - if (strcmp(binding, bind_name_to_bind(cmd[i].bind)) == 0) + if (strcmp(binding, cmd[i].bind) == 0) return &cmd[i]; } -- cgit v1.2.3