mirror of
https://github.com/tmux/tmux.git
synced 2025-04-01 21:41:44 +00:00
Merge branch 'obsd-master' into master
This commit is contained in:
commit
0982a1a975
12
tmux.c
12
tmux.c
@ -347,6 +347,12 @@ main(int argc, char **argv)
|
|||||||
|
|
||||||
if (**argv == '-')
|
if (**argv == '-')
|
||||||
flags = CLIENT_LOGIN;
|
flags = CLIENT_LOGIN;
|
||||||
|
|
||||||
|
global_environ = environ_create();
|
||||||
|
for (var = environ; *var != NULL; var++)
|
||||||
|
environ_put(global_environ, *var, 0);
|
||||||
|
if ((cwd = find_cwd()) != NULL)
|
||||||
|
environ_set(global_environ, "PWD", 0, "%s", cwd);
|
||||||
expand_paths(TMUX_CONF, &cfg_files, &cfg_nfiles, 1);
|
expand_paths(TMUX_CONF, &cfg_files, &cfg_nfiles, 1);
|
||||||
|
|
||||||
while ((opt = getopt(argc, argv, "2c:CDdf:lL:NqS:T:uUvV")) != -1) {
|
while ((opt = getopt(argc, argv, "2c:CDdf:lL:NqS:T:uUvV")) != -1) {
|
||||||
@ -441,12 +447,6 @@ main(int argc, char **argv)
|
|||||||
flags |= CLIENT_UTF8;
|
flags |= CLIENT_UTF8;
|
||||||
}
|
}
|
||||||
|
|
||||||
global_environ = environ_create();
|
|
||||||
for (var = environ; *var != NULL; var++)
|
|
||||||
environ_put(global_environ, *var, 0);
|
|
||||||
if ((cwd = find_cwd()) != NULL)
|
|
||||||
environ_set(global_environ, "PWD", 0, "%s", cwd);
|
|
||||||
|
|
||||||
global_options = options_create(NULL);
|
global_options = options_create(NULL);
|
||||||
global_s_options = options_create(NULL);
|
global_s_options = options_create(NULL);
|
||||||
global_w_options = options_create(NULL);
|
global_w_options = options_create(NULL);
|
||||||
|
Loading…
Reference in New Issue
Block a user