diff options
author | 2012-09-25 07:41:22 +0000 | |
---|---|---|
committer | 2012-09-25 07:41:22 +0000 | |
commit | fcbbb57acc42d2c96e544fa0bd76e739595e8e93 (patch) | |
tree | b1eda2113f9941edf27edff386623e103dfb292e /usr.bin/tmux/input.c | |
parent | Fix search forward so it can match strings on the last line, SF bug (diff) | |
download | wireguard-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.c | 3 |
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. */ |