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

Diff for /src/usr.bin/tmux/cmd-break-pane.c between version 1.13 and 1.14

version 1.13, 2012/03/12 13:31:09 version 1.14, 2012/05/22 11:35:37
Line 93 
Line 93 
         server_status_session_group(s);          server_status_session_group(s);
   
         if (args_has(args, 'P')) {          if (args_has(args, 'P')) {
                 template = "#{session_name}:#{window_index}";  
                 if (args_has(args, 'F'))                  if ((template = args_get(args, 'F')) == NULL)
                         template = args_get(args, 'F');                          template = DEFAULT_PANE_INFO_TEMPLATE;
   
                 ft = format_create();                  ft = format_create();
                 if ((c = cmd_find_client(ctx, NULL)) != NULL)                  if ((c = cmd_find_client(ctx, NULL)) != NULL)
                         format_client(ft, c);                          format_client(ft, c);

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14