diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-09-10 08:01:24 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-09-10 08:01:24 +0000 |
commit | 391028b65e6e8ff961a08ac1eec000de5fb2c639 (patch) | |
tree | fb165549c3e20dc825da4bdfc35cdeb6cf888a72 /usr.bin | |
parent | b85c4b98ab3c0eba0be94fb0d56d22be0a935413 (diff) |
Apply timeout to CAN and RS which also wait for ST.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/tmux/input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c index 998815771e9..798a4dd0d2e 100644 --- a/usr.bin/tmux/input.c +++ b/usr.bin/tmux/input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.127 2017/08/29 09:28:45 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.128 2017/09/10 08:01:23 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -433,7 +433,7 @@ static const struct input_state input_state_rename_string = { /* consume_st state definition. */ static const struct input_state input_state_consume_st = { "consume_st", - NULL, NULL, + input_enter_rename, NULL, /* rename also waits for ST */ input_state_consume_st_table }; |