diff options
author | 2020-03-19 14:03:48 +0000 | |
---|---|---|
committer | 2020-03-19 14:03:48 +0000 | |
commit | 29ebed3733c53f26b45edd4bc4795dfaa9d323c8 (patch) | |
tree | 68852ebf2f494759269bd49a1cc27fdf7874fc88 /usr.bin/tmux/cmd-send-keys.c | |
parent | Separate variable declaration and assignment. No functional change. (diff) | |
download | wireguard-openbsd-29ebed3733c53f26b45edd4bc4795dfaa9d323c8.tar.xz wireguard-openbsd-29ebed3733c53f26b45edd4bc4795dfaa9d323c8.zip |
Change input path so it doesn't require a pane.
Diffstat (limited to 'usr.bin/tmux/cmd-send-keys.c')
-rw-r--r-- | usr.bin/tmux/cmd-send-keys.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-send-keys.c b/usr.bin/tmux/cmd-send-keys.c index 22826b25b1a..bb504f1cb81 100644 --- a/usr.bin/tmux/cmd-send-keys.c +++ b/usr.bin/tmux/cmd-send-keys.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-send-keys.c,v 1.52 2020/01/13 07:51:54 nicm Exp $ */ +/* $OpenBSD: cmd-send-keys.c,v 1.53 2020/03/19 14:03:48 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -192,7 +192,7 @@ cmd_send_keys_exec(struct cmd *self, struct cmdq_item *item) if (args_has(args, 'R')) { window_pane_reset_palette(wp); - input_reset(wp, 1); + input_reset(wp->ictx, 1); } for (; np != 0; np--) { |