diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2014-06-21 19:48:03 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2014-06-21 19:48:03 +0100 |
commit | f8481f93c5fc92f5503a2bdd94c60375a2c81bb5 (patch) | |
tree | e8cd0d3a0cfc16a5d602a9143d301b818953ec68 /cmd-bind-key.c | |
parent | cddf50b715be8732ffd0732d33a886b788a231c5 (diff) | |
parent | 0c5ed177c4e5178127dc8fe3528985df8ff988a6 (diff) | |
download | rtmux-f8481f93c5fc92f5503a2bdd94c60375a2c81bb5.tar.gz rtmux-f8481f93c5fc92f5503a2bdd94c60375a2c81bb5.tar.bz2 rtmux-f8481f93c5fc92f5503a2bdd94c60375a2c81bb5.zip |
Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-code
Diffstat (limited to 'cmd-bind-key.c')
-rw-r--r-- | cmd-bind-key.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd-bind-key.c b/cmd-bind-key.c index 4ff3ac84..7e7975f7 100644 --- a/cmd-bind-key.c +++ b/cmd-bind-key.c @@ -29,12 +29,12 @@ enum cmd_retval cmd_bind_key_exec(struct cmd *, struct cmd_q *); -enum cmd_retval cmd_bind_key_table(struct cmd *, struct cmd_q *, int); +enum cmd_retval cmd_bind_key_mode_table(struct cmd *, struct cmd_q *, int); const struct cmd_entry cmd_bind_key_entry = { "bind-key", "bind", "cnrt:", 1, -1, - "[-cnr] [-t key-table] key command [arguments]", + "[-cnr] [-t mode-table] key command [arguments]", 0, NULL, cmd_bind_key_exec @@ -67,7 +67,7 @@ cmd_bind_key_exec(struct cmd *self, struct cmd_q *cmdq) } if (args_has(args, 't')) - return (cmd_bind_key_table(self, cmdq, key)); + return (cmd_bind_key_mode_table(self, cmdq, key)); cmdlist = cmd_list_parse(args->argc - 1, args->argv + 1, NULL, 0, &cause); @@ -84,7 +84,7 @@ cmd_bind_key_exec(struct cmd *self, struct cmd_q *cmdq) } enum cmd_retval -cmd_bind_key_table(struct cmd *self, struct cmd_q *cmdq, int key) +cmd_bind_key_mode_table(struct cmd *self, struct cmd_q *cmdq, int key) { struct args *args = self->args; const char *tablename; |