mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 06:17:04 +00:00
Mass rename struct cmd_q to struct cmdq_item and related.
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user