aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-11-04 23:12:43 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-11-04 23:12:43 +0000
commitb3c4956efeb62bae3c9ac64eab2371bb6384623a (patch)
treeb1209f1fcb7185359eb6931600ecffd824a62da7 /tmux.h
parent6a6a42aa3a6ebfedc428288babfb9e0b856d5732 (diff)
downloadrtmux-b3c4956efeb62bae3c9ac64eab2371bb6384623a.tar.gz
rtmux-b3c4956efeb62bae3c9ac64eab2371bb6384623a.tar.bz2
rtmux-b3c4956efeb62bae3c9ac64eab2371bb6384623a.zip
Don't reenlist the client imsg event every loop, instead have a small function
to it and call it after the event triggers or after a imsg is added.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index f5056e1f..4603af4d 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1564,7 +1564,6 @@ void server_signal_clear(void);
/* server-client.c */
void server_client_create(int);
void server_client_lost(struct client *);
-void server_client_prepare(void);
void server_client_callback(int, short, void *);
void server_client_loop(void);
@@ -1598,6 +1597,7 @@ void server_destroy_session_group(struct session *);
void server_destroy_session(struct session *);
void server_set_identify(struct client *);
void server_clear_identify(struct client *);
+void server_update_event(struct client *);
/* status.c */
int status_redraw(struct client *);