Mass rename struct cmd_q to struct cmdq_item and related.

This commit is contained in:
nicm
2016-10-16 19:04:05 +00:00
parent ddc4512d2e
commit b342bd0b46
73 changed files with 1002 additions and 972 deletions

View File

@ -244,9 +244,9 @@ window_choose_data_free(struct window_choose_data *wcd)
void
window_choose_data_run(struct window_choose_data *cdata)
{
struct cmd_list *cmdlist;
char *cause;
struct cmd_q *cmdq;
struct cmd_list *cmdlist;
char *cause;
struct cmdq_item *item;
/*
* The command template will have already been replaced. But if it's
@ -264,8 +264,8 @@ window_choose_data_run(struct window_choose_data *cdata)
return;
}
cmdq = cmdq_get_command(cmdlist, NULL, NULL, 0);
cmdq_append(cdata->start_client, cmdq);
item = cmdq_get_command(cmdlist, NULL, NULL, 0);
cmdq_append(cdata->start_client, item);
cmd_list_free(cmdlist);
}