diff options
author | Thomas Adam <thomas@xteddy.org> | 2017-03-09 18:01:16 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2017-03-09 18:01:16 +0000 |
commit | c5bdae466e4dad6c185fa5146b11275b6119ff24 (patch) | |
tree | 05536631ebb8c314a3026748c2b20753594cc5af /tmux.h | |
parent | fd96ccfd802aec27a4835f7bb2030003b9668e64 (diff) | |
parent | bce1dee0341b3624d927d393fd0f21771660d5ed (diff) | |
download | rtmux-c5bdae466e4dad6c185fa5146b11275b6119ff24.tar.gz rtmux-c5bdae466e4dad6c185fa5146b11275b6119ff24.tar.bz2 rtmux-c5bdae466e4dad6c185fa5146b11275b6119ff24.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1617,6 +1617,7 @@ void environ_unset(struct environ *, const char *); void environ_update(struct options *, struct environ *, struct environ *); void environ_push(struct environ *); void environ_log(struct environ *, const char *); +struct environ *environ_for_session(struct session *); /* tty.c */ void tty_create_log(void); @@ -1822,6 +1823,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 *); @@ -1842,7 +1845,6 @@ char *server_client_get_path(struct client *, const char *); const char *server_client_get_cwd(struct client *); /* server-fn.c */ -void server_fill_environ(struct session *, struct environ *); void server_redraw_client(struct client *); void server_status_client(struct client *); void server_redraw_session(struct session *); @@ -1862,8 +1864,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 *); |