[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.62 and 1.63

version 1.62, 2015/10/31 14:51:15 version 1.63, 2015/12/08 08:34:18
Line 88 
Line 88 
   
         to_free = NULL;          to_free = NULL;
         if (args_has(args, 'c')) {          if (args_has(args, 'c')) {
                 ft = format_create();                  ft = format_create(0);
                 format_defaults(ft, cmd_find_client(cmdq, NULL, 1), s, NULL,                  format_defaults(ft, cmd_find_client(cmdq, NULL, 1), s, NULL,
                     NULL);                      NULL);
                 to_free = cwd = format_expand(ft, args_get(args, 'c'));                  to_free = cwd = format_expand(ft, args_get(args, 'c'));
Line 165 
Line 165 
                 if ((template = args_get(args, 'F')) == NULL)                  if ((template = args_get(args, 'F')) == NULL)
                         template = SPLIT_WINDOW_TEMPLATE;                          template = SPLIT_WINDOW_TEMPLATE;
   
                 ft = format_create();                  ft = format_create(0);
                 format_defaults(ft, cmd_find_client(cmdq, NULL, 1), s, wl,                  format_defaults(ft, cmd_find_client(cmdq, NULL, 1), s, wl,
                     new_wp);                      new_wp);
   

Legend:
Removed from v.1.62  
changed lines
  Added in v.1.63