From b1fa3e25e437ae51b985dcfa964fb6da713b3c15 Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 9 Feb 2017 12:09:33 +0000 Subject: Break the message storage function into its own function, useful for debugging. --- tmux.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index a2bb7c55..09c980df 100644 --- a/tmux.h +++ b/tmux.h @@ -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 *); -- cgit