aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-07-30 20:17:25 +0000
committerTiago Cunha <tcunha@gmx.com>2009-07-30 20:17:25 +0000
commit5a9b7b230cc22728b39845e212ff9ff939d1f678 (patch)
treec8f0b9b65fcefaf5374fdfa0682c910de036d114 /tmux.c
parent522fc94d12753466dd5351918642114bbc475e35 (diff)
downloadrtmux-5a9b7b230cc22728b39845e212ff9ff939d1f678.tar.gz
rtmux-5a9b7b230cc22728b39845e212ff9ff939d1f678.tar.bz2
rtmux-5a9b7b230cc22728b39845e212ff9ff939d1f678.zip
Sync OpenBSD patchset 195:
Taking account of the "s, 22 not 24 is the maximum length of #T in status-right to prevent the date being cut off.
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 040d34b7..f8c4f1f1 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.150 2009-07-28 22:12:16 tcunha Exp $ */
+/* $Id: tmux.c,v 1.151 2009-07-30 20:17:25 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -371,7 +371,7 @@ main(int argc, char **argv)
options_set_number(&global_s_options, "status-right-length", 40);
options_set_string(&global_s_options, "status-left", "[#S]");
options_set_string(
- &global_s_options, "status-right", "\"#24T\" %%H:%%M %%d-%%b-%%y");
+ &global_s_options, "status-right", "\"#22T\" %%H:%%M %%d-%%b-%%y");
if (flags & IDENTIFY_UTF8)
options_set_number(&global_s_options, "status-utf8", 1);
else