diff options
author | Thomas Adam <thomas@xteddy.org> | 2014-06-20 12:59:43 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2014-06-20 12:59:43 +0100 |
commit | 814e40522cb611895e84fc2aaf58d5d0ca9ba348 (patch) | |
tree | 12e56d683fbcadf4d67f8a78acf8afcf1343ba0b /cmd-bind-key.c | |
parent | 1544c688e6bdc61fec8a96588b2552551753e46b (diff) | |
parent | c8efffb4db5c521640dd5687d2a640ca04664aad (diff) | |
download | rtmux-814e40522cb611895e84fc2aaf58d5d0ca9ba348.tar.gz rtmux-814e40522cb611895e84fc2aaf58d5d0ca9ba348.tar.bz2 rtmux-814e40522cb611895e84fc2aaf58d5d0ca9ba348.zip |
Merge branch 'obsd-master'
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; |