diff options
author | 2016-01-16 00:36:53 +0000 | |
---|---|---|
committer | 2016-01-16 00:36:53 +0000 | |
commit | 6cd60b5a67a62f1658d24de519cca0dcb2ec7452 (patch) | |
tree | 36b739ebb18ffe4175124a0389b9342fa6208d08 /usr.bin/tmux/tmux.h | |
parent | As with compute_device_size(), gut compute_block_size() and simply (diff) | |
download | wireguard-openbsd-6cd60b5a67a62f1658d24de519cca0dcb2ec7452.tar.xz wireguard-openbsd-6cd60b5a67a62f1658d24de519cca0dcb2ec7452.zip |
Add hooks for alerts (bell, silence, activity), from Thomas Adam.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 1c2af721fa7..f86b2a13f95 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.615 2016/01/15 11:31:47 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.616 2016/01/16 00:36:53 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1780,6 +1780,8 @@ void cmd_find_copy_state(struct cmd_find_state *, void cmd_find_log_state(const char *, struct cmd_find_state *); int cmd_find_from_session(struct cmd_find_state *, struct session *); +int cmd_find_from_winlink(struct cmd_find_state *, + struct session *, struct winlink *); int cmd_find_from_window(struct cmd_find_state *, struct window *); int cmd_find_from_pane(struct cmd_find_state *, struct window_pane *); |