aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-07-08 18:12:57 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-07-08 18:12:57 +0000
commit890db6eaaf11fc3a8213b209aff0bebdcbff3935 (patch)
tree451deb31171f63fed67771701b4343b8c001b637 /tmux.c
parent99395856ff7c7edcbd3b0e47ca0095a1698e7b46 (diff)
downloadrtmux-890db6eaaf11fc3a8213b209aff0bebdcbff3935.tar.gz
rtmux-890db6eaaf11fc3a8213b209aff0bebdcbff3935.tar.bz2
rtmux-890db6eaaf11fc3a8213b209aff0bebdcbff3935.zip
Accidently deleted default-command.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index 3ab24fb4..8ecb75d3 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.140 2009-07-08 18:03:03 nicm Exp $ */
+/* $Id: tmux.c,v 1.141 2009-07-08 18:12:57 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -278,6 +278,7 @@ main(int argc, char **argv)
options_init(&global_s_options, NULL);
options_set_number(&global_s_options, "bell-action", BELL_ANY);
options_set_number(&global_s_options, "buffer-limit", 9);
+ options_set_string(&global_s_options, "default-command", "%s", "");
options_set_number(&global_s_options, "display-time", 750);
options_set_number(&global_s_options, "history-limit", 2000);
options_set_number(&global_s_options, "lock-after-time", 0);