From bce1dee0341b3624d927d393fd0f21771660d5ed Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 9 Mar 2017 17:06:35 +0000 Subject: Move the client identify (display-panes) code into server-client.c. --- tmux.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index a0978a1c..fa7ef636 100644 --- a/tmux.h +++ b/tmux.h @@ -1819,6 +1819,8 @@ void server_update_socket(void); void server_add_accept(int); /* server-client.c */ +void server_client_set_identify(struct client *); +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 *); int server_client_is_default_key_table(struct client *); @@ -1858,8 +1860,6 @@ void server_unlink_window(struct session *, struct winlink *); void server_destroy_pane(struct window_pane *, int); void server_destroy_session(struct session *); void server_check_unattached(void); -void server_set_identify(struct client *); -void server_clear_identify(struct client *, struct window_pane *); int server_set_stdin_callback(struct client *, void (*)(struct client *, int, void *), void *, char **); void server_unzoom_window(struct window *); -- cgit