Move the client identify (display-panes) code into server-client.c.

This commit is contained in:
nicm
2017-03-09 17:06:35 +00:00
parent dbfee6a468
commit bce1dee034
4 changed files with 49 additions and 47 deletions

4
tmux.h
View File

@@ -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 *);