diff options
author | nicm <nicm> | 2017-02-09 12:09:33 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-02-09 12:09:33 +0000 |
commit | b1fa3e25e437ae51b985dcfa964fb6da713b3c15 (patch) | |
tree | 3956ba631261c76e7e726d75f3f244e3dc09f6ba /tmux.h | |
parent | b7ddfb39f3f258915b59ca8aac835631558ee7c5 (diff) | |
download | rtmux-b1fa3e25e437ae51b985dcfa964fb6da713b3c15.tar.gz rtmux-b1fa3e25e437ae51b985dcfa964fb6da713b3c15.tar.bz2 rtmux-b1fa3e25e437ae51b985dcfa964fb6da713b3c15.zip |
Break the message storage function into its own function, useful for
debugging.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1828,6 +1828,8 @@ void server_client_exec(struct client *, const char *); void server_client_loop(void); void server_client_push_stdout(struct client *); void server_client_push_stderr(struct client *); +void printflike(2, 3) server_client_add_message(struct client *, const char *, + ...); /* server-fn.c */ void server_fill_environ(struct session *, struct environ *); |