[BACK]Return to cmd-list-clients.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/cmd-list-clients.c between version 1.9 and 1.10

version 1.9, 2011/10/23 01:12:46 version 1.10, 2012/05/22 11:35:37
Line 58 
Line 58 
         } else          } else
                 s = NULL;                  s = NULL;
   
         template = args_get(args, 'F');          if ((template = args_get(args, 'F')) == NULL)
         if (template == NULL) {                  template = DEFAULT_CLIENT_TEMPLATE;
                 template = "#{client_tty}: #{session_name} "  
                     "[#{client_width}x#{client_height} #{client_termname}]"  
                     "#{?client_utf8, (utf8),}"  
                     "#{?client_readonly, (ro),}";  
         }  
   
         for (i = 0; i < ARRAY_LENGTH(&clients); i++) {          for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                 c = ARRAY_ITEM(&clients, i);                  c = ARRAY_ITEM(&clients, i);

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10