From d90d646ca8e7ff6f97e9d11a2d746e217c7a3dcc Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 29 Jun 2008 07:04:31 +0000 Subject: Zombie windows, requested by Will Maier. --- tmux.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tmux.c') diff --git a/tmux.c b/tmux.c index 392a1279..6525a755 100644 --- a/tmux.c +++ b/tmux.c @@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.69 2008-06-23 22:12:29 nicm Exp $ */ +/* $Id: tmux.c,v 1.70 2008-06-29 07:04:30 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -222,6 +222,7 @@ main(int argc, char **argv) options_set_number(&global_options, "status-interval", 15); options_set_number(&global_options, "set-titles", 1); options_set_number(&global_options, "buffer-limit", 9); + options_set_number(&global_options, "remain-by-default", 0); if (cfg_file == NULL) { home = getenv("HOME"); -- cgit