summaryrefslogtreecommitdiffstats
path: root/cfg.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2017-04-21 16:01:18 +0100
committerThomas Adam <thomas@xteddy.org>2017-04-21 16:01:18 +0100
commit4612419c143c3f748bc5f6ccd467c7c0014e8d48 (patch)
tree42929aeeb8b1d89abf639124412199fac7092f04 /cfg.c
parent93062ad09952f411d48818b05dc9898bc14dcfde (diff)
parentc799425069d02675474cda312fac1457829052fb (diff)
Merge branch 'obsd-master'
Diffstat (limited to 'cfg.c')
-rw-r--r--cfg.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/cfg.c b/cfg.c
index 5fcd6de5..ffaa85b5 100644
--- a/cfg.c
+++ b/cfg.c
@@ -31,7 +31,6 @@ static char *cfg_file;
int cfg_finished;
static char **cfg_causes;
static u_int cfg_ncauses;
-struct client *cfg_client;
static enum cmd_retval
cfg_done(__unused struct cmdq_item *item, __unused void *data)
@@ -43,8 +42,8 @@ cfg_done(__unused struct cmdq_item *item, __unused void *data)
if (!RB_EMPTY(&sessions))
cfg_show_causes(RB_MIN(sessions, &sessions));
- if (cfg_client != NULL)
- server_client_unref(cfg_client);
+ status_prompt_load_history();
+
return (CMD_RETURN_NORMAL);
}
@@ -61,20 +60,22 @@ start_cfg(void)
const char *home;
int quiet = 0;
- cfg_client = TAILQ_FIRST(&clients);
- if (cfg_client != NULL)
- cfg_client->references++;
+ /*
+ * Note that the configuration files are loaded without a client, so
+ * NULL is passed into load_cfg() which means that commands run in the
+ * global queue and item->client is NULL for all commands.
+ */
- load_cfg(TMUX_CONF, cfg_client, NULL, 1);
+ load_cfg(TMUX_CONF, NULL, NULL, 1);
if (cfg_file == NULL && (home = find_home()) != NULL) {
xasprintf(&cfg_file, "%s/.tmux.conf", home);
quiet = 1;
}
if (cfg_file != NULL)
- load_cfg(cfg_file, cfg_client, NULL, quiet);
+ load_cfg(cfg_file, NULL, NULL, quiet);
- cmdq_append(cfg_client, cmdq_get_callback(cfg_done, NULL));
+ cmdq_append(NULL, cmdq_get_callback(cfg_done, NULL));
}
int