Loads more static, except for cmd-*.c and window-*.c.

This commit is contained in:
nicm
2016-10-10 21:29:23 +00:00
parent 66b5477cc1
commit c426e485e5
25 changed files with 301 additions and 295 deletions

View File

@ -28,8 +28,8 @@
#include "tmux.h"
struct session *server_next_session(struct session *);
void server_callback_identify(int, short, void *);
static struct session *server_next_session(struct session *);
static void server_callback_identify(int, short, void *);
void
server_fill_environ(struct session *s, struct environ *env)
@ -355,7 +355,7 @@ server_destroy_session_group(struct session *s)
}
}
struct session *
static struct session *
server_next_session(struct session *s)
{
struct session *s_loop, *s_out;
@ -454,7 +454,7 @@ server_clear_identify(struct client *c, struct window_pane *wp)
server_redraw_client(c);
}
void
static void
server_callback_identify(__unused int fd, __unused short events, void *data)
{
server_clear_identify(data, NULL);