diff options
author | 2017-09-10 08:01:23 +0000 | |
---|---|---|
committer | 2017-09-10 08:01:23 +0000 | |
commit | c476faa33c80021d4df28d84c0a1815e4b016eab (patch) | |
tree | bbd77003718421473e08444e856aa939c830c65f | |
parent | Use monotonic clock for statistics display. From Scott Cheloha. (diff) | |
download | wireguard-openbsd-c476faa33c80021d4df28d84c0a1815e4b016eab.tar.xz wireguard-openbsd-c476faa33c80021d4df28d84c0a1815e4b016eab.zip |
Apply timeout to CAN and RS which also wait for ST.
-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 }; |