=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-list-windows.c,v retrieving revision 1.23 retrieving revision 1.24 diff -c -r1.23 -r1.24 *** src/usr.bin/tmux/cmd-list-windows.c 2012/07/11 07:10:15 1.23 --- src/usr.bin/tmux/cmd-list-windows.c 2012/08/14 08:51:53 1.24 *************** *** 1,4 **** ! /* $OpenBSD: cmd-list-windows.c,v 1.23 2012/07/11 07:10:15 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-list-windows.c,v 1.24 2012/08/14 08:51:53 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 85,96 **** if (template == NULL) { switch (type) { case 0: ! template = DEFAULT_WINDOW_TEMPLATE \ ! " [layout #{window_layout}] #{window_id}" \ ! "#{?window_active, (active),}"; break; case 1: ! template = "#{session_name}:" DEFAULT_WINDOW_TEMPLATE; break; } } --- 85,94 ---- if (template == NULL) { switch (type) { case 0: ! template = LIST_WINDOWS_TEMPLATE; break; case 1: ! template = LIST_WINDOWS_WITH_SESSION_TEMPLATE; break; } }