Put this back in with the initialisation in the right order.

This commit is contained in:
Nicholas Marriott
2010-05-04 17:28:16 +00:00
parent af5e0bd15a
commit c4a2fdf15b
9 changed files with 116 additions and 154 deletions

7
tmux.h
View File

@@ -1253,6 +1253,7 @@ extern struct options global_options;
extern struct options global_s_options;
extern struct options global_w_options;
extern struct environ global_environ;
extern struct event_base *ev_base;
extern char *cfg_file;
extern int debug_level;
extern int be_quiet;
@@ -1583,8 +1584,6 @@ const char *key_string_lookup_key(int);
extern struct clients clients;
extern struct clients dead_clients;
int server_start(char *);
void server_signal_set(void);
void server_signal_clear(void);
void server_update_socket(void);
/* server-client.c */
@@ -1900,6 +1899,10 @@ void window_choose_ready(struct window_pane *,
void queue_window_name(struct window *);
char *default_window_name(struct window *);
/* signal.c */
void set_signals(void(*handler)(int, short, unused void *));
void clear_signals(void);
/* session.c */
extern struct sessions sessions;
extern struct sessions dead_sessions;