=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-queue.c,v retrieving revision 1.49 retrieving revision 1.50 diff -c -r1.49 -r1.50 *** src/usr.bin/tmux/cmd-queue.c 2017/04/21 14:01:19 1.49 --- src/usr.bin/tmux/cmd-queue.c 2017/04/21 18:18:17 1.50 *************** *** 1,4 **** ! /* $OpenBSD: cmd-queue.c,v 1.49 2017/04/21 14:01:19 nicm Exp $ */ /* * Copyright (c) 2013 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-queue.c,v 1.50 2017/04/21 18:18:17 nicm Exp $ */ /* * Copyright (c) 2013 Nicholas Marriott *************** *** 206,212 **** goto out; } if (item->client == NULL) ! item->client = cmd_find_client(item, NULL, CMD_FIND_QUIET); retval = cmd->entry->exec(cmd, item); if (retval == CMD_RETURN_ERROR) --- 206,212 ---- goto out; } if (item->client == NULL) ! item->client = cmd_find_client(item, NULL, 1); retval = cmd->entry->exec(cmd, item); if (retval == CMD_RETURN_ERROR) *************** *** 325,332 **** item->time = time(NULL); item->number = ++number; ! switch (item->type) ! { case CMDQ_COMMAND: retval = cmdq_fire_command(item); --- 325,331 ---- item->time = time(NULL); item->number = ++number; ! switch (item->type) { case CMDQ_COMMAND: retval = cmdq_fire_command(item);