-/* $OpenBSD: cmd-queue.c,v 1.49 2017/04/21 14:01:19 nicm Exp $ */
+/* $OpenBSD: cmd-queue.c,v 1.50 2017/04/21 18:18:17 nicm Exp $ */
/*
* Copyright (c) 2013 Nicholas Marriott <nicholas.marriott@gmail.com>
goto out;
}
if (item->client == NULL)
- item->client = cmd_find_client(item, NULL, CMD_FIND_QUIET);
+ item->client = cmd_find_client(item, NULL, 1);
retval = cmd->entry->exec(cmd, item);
if (retval == CMD_RETURN_ERROR)
item->time = time(NULL);
item->number = ++number;
- switch (item->type)
- {
+ switch (item->type) {
case CMDQ_COMMAND:
retval = cmdq_fire_command(item);
-/* $OpenBSD: tmux.h,v 1.748 2017/04/21 17:22:20 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.749 2017/04/21 18:18:17 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
struct args;
struct client;
struct cmdq_item;
-struct cmdq_subitem;
struct cmdq_list;
struct environ;
struct input_ctx;