From dc373abba88155afb47e31c6f7785a8cedffba42 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Ritschard Date: Tue, 2 Jun 2009 15:55:32 +0000 Subject: spawn login shells by default, adapt manpage bits as well. ok nicm@ --- tmux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tmux.c') diff --git a/tmux.c b/tmux.c index 820ffb6b..069dc551 100644 --- a/tmux.c +++ b/tmux.c @@ -369,7 +369,7 @@ main(int argc, char **argv) shell = _PATH_BSHELL; } options_set_string( - &global_options, "default-command", "exec %s", shell); + &global_options, "default-command", "exec %s -l", shell); if (getcwd(cwd, sizeof cwd) == NULL) { log_warn("getcwd"); -- cgit