mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 13:37:12 +00:00
Rename cmdq_shared to cmdq_state which will better reflect what it is
(going to be) used for.
This commit is contained in:
@ -549,7 +549,7 @@ key_bindings_dispatch(struct key_binding *bd, struct cmdq_item *item,
|
||||
else {
|
||||
new_item = cmdq_get_command(bd->cmdlist, fs, m, 0);
|
||||
if (bd->flags & KEY_BINDING_REPEAT)
|
||||
cmdq_get_shared(new_item)->flags |= CMDQ_SHARED_REPEAT;
|
||||
cmdq_get_state(new_item)->flags |= CMDQ_STATE_REPEAT;
|
||||
}
|
||||
if (item != NULL)
|
||||
new_item = cmdq_insert_after(item, new_item);
|
||||
|
Reference in New Issue
Block a user