diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-09-01 10:01:57 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-09-01 10:01:57 +0000 |
commit | 3f731f511581db20a4b8b0d3091216360fb21229 (patch) | |
tree | 2cc06012c81075ce986e320677771764f99889e4 /usr.bin/tmux/tmux.h | |
parent | 139d1399389601b5d2f1a58a44198692bc417ad4 (diff) |
Move initial conf load into cfg.c.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index fcd60c2f586..7a2bba02fa0 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.549 2015/09/01 09:48:34 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.550 2015/09/01 10:01:56 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1420,12 +1420,11 @@ void setblocking(int, int); const char *find_home(void); /* cfg.c */ -extern struct cmd_q *cfg_cmd_q; extern int cfg_finished; extern int cfg_references; extern struct client *cfg_client; +void start_cfg(void); int load_cfg(const char *, struct cmd_q *, char **); -void cfg_default_done(struct cmd_q *); void cfg_add_cause(const char *, ...); void cfg_print_causes(struct cmd_q *); void cfg_show_causes(struct session *); |