diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-05-27 21:43:58 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-05-27 21:43:58 +0000 |
commit | 237111a55dc7e24dc648f794e976de43543c32ab (patch) | |
tree | 970f6e09d9fa5c02967bbf5843538aa4fa8a6d3f /usr.bin | |
parent | 45a54f4b75d3aa9af516b6b6b656686eb946fc2f (diff) |
Fix client templates, from Romain Francoise.
Diffstat (limited to 'usr.bin')
-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} " \ |