summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/input.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2012-09-25 07:41:22 +0000
committernicm <nicm@openbsd.org>2012-09-25 07:41:22 +0000
commitfcbbb57acc42d2c96e544fa0bd76e739595e8e93 (patch)
treeb1eda2113f9941edf27edff386623e103dfb292e /usr.bin/tmux/input.c
parentFix search forward so it can match strings on the last line, SF bug (diff)
downloadwireguard-openbsd-fcbbb57acc42d2c96e544fa0bd76e739595e8e93.tar.xz
wireguard-openbsd-fcbbb57acc42d2c96e544fa0bd76e739595e8e93.zip
Add notification for input from a pane, from George Nachman.
Diffstat (limited to 'usr.bin/tmux/input.c')
-rw-r--r--usr.bin/tmux/input.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c
index 9d366b43220..f44e2d45fe3 100644
--- a/usr.bin/tmux/input.c
+++ b/usr.bin/tmux/input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: input.c,v 1.53 2012/07/10 11:53:01 nicm Exp $ */
+/* $OpenBSD: input.c,v 1.54 2012/09/25 07:41:22 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -752,6 +752,7 @@ input_parse(struct window_pane *wp)
buf = EVBUFFER_DATA(evb);
len = EVBUFFER_LENGTH(evb);
+ notify_input(wp, evb);
off = 0;
/* Parse the input. */