diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-08-30 12:03:59 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-08-30 12:03:59 +0100 |
commit | b4c633cc40cd3d5963e24e6d560bc2c7f6553000 (patch) | |
tree | 3c94bc6f3d3b3924b12f791c2adb5a664ecdd93b /cmd-queue.c | |
parent | 8f364053ca9242dafcddc304aed49aac80132ba3 (diff) | |
parent | 54c5070767d58a4fb0559eb9b3ee19caa72c4a73 (diff) | |
download | rtmux-b4c633cc40cd3d5963e24e6d560bc2c7f6553000.tar.gz rtmux-b4c633cc40cd3d5963e24e6d560bc2c7f6553000.tar.bz2 rtmux-b4c633cc40cd3d5963e24e6d560bc2c7f6553000.zip |
Merge branch 'master' of github.com:tmux/tmux
Diffstat (limited to 'cmd-queue.c')
-rw-r--r-- | cmd-queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-queue.c b/cmd-queue.c index db802339..ec65bd80 100644 --- a/cmd-queue.c +++ b/cmd-queue.c @@ -241,7 +241,7 @@ cmdq_fire_command(struct cmdq_item *item) fsp = &item->target; else if (cmd_find_valid_state(&item->shared->current)) fsp = &item->shared->current; - else if (cmd_find_from_client(&fs, item->client) == 0) + else if (cmd_find_from_client(&fs, item->client, 0) == 0) fsp = &fs; else goto out; |