diff options
author | 2017-08-16 12:12:54 +0000 | |
---|---|---|
committer | 2017-08-16 12:12:54 +0000 | |
commit | 3b2d01c064a55b6a704d663d8090ab4e1c456d54 (patch) | |
tree | 51ad3305bc3ac070ab93a8192acab096d0b83de8 /usr.bin/tmux/tmux.h | |
parent | Rename BELL_* values to ALERT_* now they are used by more than bells, (diff) | |
download | wireguard-openbsd-3b2d01c064a55b6a704d663d8090ab4e1c456d54.tar.xz wireguard-openbsd-3b2d01c064a55b6a704d663d8090ab4e1c456d54.zip |
Add -d flag to display-panes to specify timeout, and make 0 mean no
timeout. From Laurens Post.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index ac1f9557c4d..c8ad282a046 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.799 2017/08/16 11:46:08 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.800 2017/08/16 12:12:54 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1870,7 +1870,7 @@ void server_add_accept(int); /* server-client.c */ u_int server_client_how_many(void); -void server_client_set_identify(struct client *); +void server_client_set_identify(struct client *, u_int); void server_client_clear_identify(struct client *, struct window_pane *); void server_client_set_key_table(struct client *, const char *); const char *server_client_get_key_table(struct client *); |