[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.25 and 1.26

version 1.25, 2014/10/20 23:35:28 version 1.26, 2015/02/05 10:29:43
Line 49 
Line 49 
         char                    *name;          char                    *name;
         char                    *cause;          char                    *cause;
         int                      base_idx;          int                      base_idx;
         struct client           *c;  
         struct format_tree      *ft;          struct format_tree      *ft;
         const char              *template;          const char              *template;
         char                    *cp;          char                    *cp;
Line 90 
Line 89 
                         template = BREAK_PANE_TEMPLATE;                          template = BREAK_PANE_TEMPLATE;
   
                 ft = format_create();                  ft = format_create();
                 if ((c = cmd_find_client(cmdq, NULL, 1)) != NULL)                  format_defaults(ft, cmd_find_client(cmdq, NULL, 1), s, wl, wp);
                         format_client(ft, c);  
                 format_session(ft, s);  
                 format_winlink(ft, s, wl);  
                 format_window_pane(ft, wp);  
   
                 cp = format_expand(ft, template);                  cp = format_expand(ft, template);
                 cmdq_print(cmdq, "%s", cp);                  cmdq_print(cmdq, "%s", cp);

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26