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

Diff for /src/usr.bin/tmux/cmd-split-window.c between version 1.32 and 1.33

version 1.32, 2012/03/17 22:35:09 version 1.33, 2012/05/22 11:35:37
Line 139 
Line 139 
         environ_free(&env);          environ_free(&env);
   
         if (args_has(args, 'P')) {          if (args_has(args, 'P')) {
                 template = "#{session_name}:#{window_index}.#{pane_index}";                  if ((template = args_get(args, 'F')) == NULL)
                 if (args_has(args, 'F'))                          template = DEFAULT_PANE_INFO_TEMPLATE;
                         template = args_get(args, 'F');  
   
                 ft = format_create();                  ft = format_create();
                 if ((c = cmd_find_client(ctx, NULL)) != NULL)                  if ((c = cmd_find_client(ctx, NULL)) != NULL)

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.33