From 890db6eaaf11fc3a8213b209aff0bebdcbff3935 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 8 Jul 2009 18:12:57 +0000 Subject: [PATCH] Accidently deleted default-command. --- tmux.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 @@ -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);