aboutsummaryrefslogtreecommitdiff
path: root/src/commands.h
diff options
context:
space:
mode:
authorJeinzi <Jeinzi@gmx.de>2018-09-01 00:34:50 +0200
committerJeinzi <Jeinzi@gmx.de>2018-09-01 00:34:50 +0200
commit88d6dc2ef7ebee4b04b079455727034a0f594aae (patch)
tree41d30d23311f780440fbc4b1bdc02443c52f6dfb /src/commands.h
parent7221ef8319ad88c9ab81e7734e89b8debfe861b4 (diff)
downloadimv-88d6dc2ef7ebee4b04b079455727034a0f594aae.tar.gz
Added support for multiple commands per bind.
Diffstat (limited to 'src/commands.h')
-rw-r--r--src/commands.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.h b/src/commands.h
index cf3a728..256018e 100644
--- a/src/commands.h
+++ b/src/commands.h
@@ -11,7 +11,7 @@ struct imv_commands *imv_commands_create(void);
void imv_commands_free(struct imv_commands *cmds);
void imv_command_register(struct imv_commands *cmds, const char *command, void (*handler)(struct list*, const char*, void*));
void imv_command_alias(struct imv_commands *cmds, const char *command, const char *alias);
-int imv_command_exec(struct imv_commands *cmds, const char *command, void *data);
+int imv_command_exec(struct imv_commands *cmds, struct list *commands, void *data);
#endif