diff options
author | nicm <nicm> | 2013-10-20 17:28:43 +0000 |
---|---|---|
committer | nicm <nicm> | 2013-10-20 17:28:43 +0000 |
commit | bf35441608b05d52627215aa70bd52d9460812d4 (patch) | |
tree | bfca70f3b3a04d09511654a960fa5389cde22d37 /tmux.h | |
parent | f52eac62259c431daac84ddb6c2a5b7ebd528c2c (diff) | |
download | rtmux-bf35441608b05d52627215aa70bd52d9460812d4.tar.gz rtmux-bf35441608b05d52627215aa70bd52d9460812d4.tar.bz2 rtmux-bf35441608b05d52627215aa70bd52d9460812d4.zip |
Do not run any command line command from the client which starts the
server until after the configuration file completes. This prevents it
racing against run-shell or if-shell in .tmux.conf that run in the
background.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1510,6 +1510,7 @@ extern struct cmd_q *cfg_cmd_q; extern int cfg_finished; extern int cfg_references; extern struct causelist cfg_causes; +extern struct client *cfg_client; int load_cfg(const char *, struct cmd_q *, char **); void cfg_default_done(struct cmd_q *); void cfg_show_causes(struct session *); |