diff options
author | 2012-05-27 21:43:57 +0000 | |
---|---|---|
committer | 2012-05-27 21:43:57 +0000 | |
commit | 44bcaf8c7d830d7d5742a28fb3b12a29b0a7c9db (patch) | |
tree | 250e6802f13d6cf8af494cefba32df4e669e9d7d | |
parent | tweak previous; (diff) | |
download | wireguard-openbsd-44bcaf8c7d830d7d5742a28fb3b12a29b0a7c9db.tar.xz wireguard-openbsd-44bcaf8c7d830d7d5742a28fb3b12a29b0a7c9db.zip |
Fix client templates, from Romain Francoise.
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 70165787fd5..b860debd647 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.339 2012/05/25 08:28:10 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.340 2012/05/27 21:43:57 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -97,8 +97,8 @@ extern char **environ; "#{line}: #{buffer_size} bytes: \"#{buffer_sample}\"" #define DEFAULT_CLIENT_TEMPLATE \ "#{client_tty}: #{session_name} " \ - "[#client_width}x#{client_height} #{client_termname}]" \ - "{?client_utf8, (utf8),} #{?client_readonly, (ro),}" + "[#{client_width}x#{client_height} #{client_termname}]" \ + "#{?client_utf8, (utf8),} #{?client_readonly, (ro),}" #define DEFAULT_DISPLAY_MESSAGE_TEMPLATE \ "[#{session_name}] #{window_index}:" \ "#{window_name}, current pane #{pane_index} " \ |