mirror of
https://github.com/tmux/tmux.git
synced 2024-11-17 18:08:51 +00:00
Merge branch 'obsd-master'
This commit is contained in:
commit
0a54a07909
@ -624,7 +624,7 @@ first_key:
|
|||||||
* If not a complete key, look for key with an escape prefix (meta
|
* If not a complete key, look for key with an escape prefix (meta
|
||||||
* modifier).
|
* modifier).
|
||||||
*/
|
*/
|
||||||
if (*buf == '\033') {
|
if (*buf == '\033' && len > 1) {
|
||||||
/* Look for a key without the escape. */
|
/* Look for a key without the escape. */
|
||||||
n = tty_keys_next1(tty, buf + 1, len - 1, &key, &size, expired);
|
n = tty_keys_next1(tty, buf + 1, len - 1, &key, &size, expired);
|
||||||
if (n == 0) { /* found */
|
if (n == 0) { /* found */
|
||||||
|
Loading…
Reference in New Issue
Block a user