mirror of
https://github.com/tmux/tmux.git
synced 2025-09-04 06:56:58 +00:00
Merge branch 'obsd-master'
Conflicts: paste.c
This commit is contained in:
@ -725,9 +725,10 @@ server_client_handle_key(struct client *c, key_code key)
|
||||
server_clear_identify(c, NULL);
|
||||
}
|
||||
if (c->prompt_string != NULL) {
|
||||
if (!(c->flags & CLIENT_READONLY))
|
||||
status_prompt_key(c, key);
|
||||
return;
|
||||
if (c->flags & CLIENT_READONLY)
|
||||
return;
|
||||
if (status_prompt_key(c, key) == 0)
|
||||
return;
|
||||
}
|
||||
|
||||
/* Check for mouse keys. */
|
||||
|
Reference in New Issue
Block a user