mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Add static in window-*.c and move some internal functions out of tmux.h.
This commit is contained in:
8
names.c
8
names.c
@ -25,8 +25,10 @@
|
||||
|
||||
#include "tmux.h"
|
||||
|
||||
static void name_time_callback(int, short, void *);
|
||||
static int name_time_expired(struct window *, struct timeval *);
|
||||
static void name_time_callback(int, short, void *);
|
||||
static int name_time_expired(struct window *, struct timeval *);
|
||||
|
||||
static char *format_window_name(struct window *);
|
||||
|
||||
static void
|
||||
name_time_callback(__unused int fd, __unused short events, void *arg)
|
||||
@ -115,7 +117,7 @@ default_window_name(struct window *w)
|
||||
return (s);
|
||||
}
|
||||
|
||||
char *
|
||||
static char *
|
||||
format_window_name(struct window *w)
|
||||
{
|
||||
struct format_tree *ft;
|
||||
|
Reference in New Issue
Block a user