summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/tmux.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2009-07-29 05:36:53 +0000
committernicm <nicm@openbsd.org>2009-07-29 05:36:53 +0000
commit878f1ca00574880b19644bb03929d11d495a4508 (patch)
tree31d881c05add0709a6fd9561b5a257b49e792d50 /usr.bin/tmux/tmux.c
parentapply patch for https://www.isc.org/node/474 since jakob does not (diff)
downloadwireguard-openbsd-878f1ca00574880b19644bb03929d11d495a4508.tar.xz
wireguard-openbsd-878f1ca00574880b19644bb03929d11d495a4508.zip
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 'usr.bin/tmux/tmux.c')
-rw-r--r--usr.bin/tmux/tmux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c
index 1f2910aa480..a5fe1d8daf6 100644
--- a/usr.bin/tmux/tmux.c
+++ b/usr.bin/tmux/tmux.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.c,v 1.21 2009/07/26 12:58:44 nicm Exp $ */
+/* $OpenBSD: tmux.c,v 1.22 2009/07/29 05:36:53 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -362,7 +362,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