summaryrefslogtreecommitdiffstats
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-19 19:40:35 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-19 19:40:35 +0000
commitc3b7a49cc1b7c1a7f9805f17c33a4cd4533b82b3 (patch)
tree880de5fd24e1b8fa447501126abbd825078d4731 /tmux.c
parent8078deea3f7e6d2f9477f267838e03d8489f2128 (diff)
Editable prompt. Not used for anything yet. More to come.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.c b/tmux.c
index 07a150da..eb1cb467 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.61 2008-06-18 22:21:51 nicm Exp $ */
+/* $Id: tmux.c,v 1.62 2008-06-19 19:40:35 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -215,7 +215,7 @@ main(int argc, char **argv)
options_set_number(&global_options, "bell-action", BELL_ANY);
options_set_number(&global_options, "history-limit", 2000);
options_set_key(&global_options, "prefix-key", META);
- options_set_string(&global_options, "status-left", "");
+ options_set_string(&global_options, "status-left", "%s", ""); /* ugh */
options_set_string(
&global_options, "status-right", "%%H:%%M %%d-%%b-%%y");
options_set_number(&global_options, "status-interval", 15);