[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.19 and 1.20

version 1.19, 2013/03/24 09:27:19 version 1.20, 2013/03/24 09:54:10
Line 26 
Line 26 
  * Break pane off into a window.   * Break pane off into a window.
  */   */
   
 enum cmd_retval  cmd_break_pane_exec(struct cmd *, struct cmd_ctx *);  enum cmd_retval  cmd_break_pane_exec(struct cmd *, struct cmd_q *);
   
 const struct cmd_entry cmd_break_pane_entry = {  const struct cmd_entry cmd_break_pane_entry = {
         "break-pane", "breakp",          "break-pane", "breakp",
Line 39 
Line 39 
 };  };
   
 enum cmd_retval  enum cmd_retval
 cmd_break_pane_exec(struct cmd *self, struct cmd_ctx *ctx)  cmd_break_pane_exec(struct cmd *self, struct cmd_q *cmdq)
 {  {
         struct args             *args = self->args;          struct args             *args = self->args;
         struct winlink          *wl;          struct winlink          *wl;
Line 54 
Line 54 
         const char              *template;          const char              *template;
         char                    *cp;          char                    *cp;
   
         if ((wl = cmd_find_pane(ctx, args_get(args, 't'), &s, &wp)) == NULL)          if ((wl = cmd_find_pane(cmdq, args_get(args, 't'), &s, &wp)) == NULL)
                 return (CMD_RETURN_ERROR);                  return (CMD_RETURN_ERROR);
   
         if (window_count_panes(wl->window) == 1) {          if (window_count_panes(wl->window) == 1) {
                 ctx->error(ctx, "can't break with only one pane");                  cmdq_error(cmdq, "can't break with only one pane");
                 return (CMD_RETURN_ERROR);                  return (CMD_RETURN_ERROR);
         }          }
   
Line 97 
Line 97 
                         template = BREAK_PANE_TEMPLATE;                          template = BREAK_PANE_TEMPLATE;
   
                 ft = format_create();                  ft = format_create();
                 if ((c = cmd_find_client(ctx, NULL, 1)) != NULL)                  if ((c = cmd_find_client(cmdq, NULL, 1)) != NULL)
                         format_client(ft, c);                          format_client(ft, c);
                 format_session(ft, s);                  format_session(ft, s);
                 format_winlink(ft, s, wl);                  format_winlink(ft, s, wl);
                 format_window_pane(ft, wp);                  format_window_pane(ft, wp);
   
                 cp = format_expand(ft, template);                  cp = format_expand(ft, template);
                 ctx->print(ctx, "%s", cp);                  cmdq_print(cmdq, "%s", cp);
                 free(cp);                  free(cp);
   
                 format_free(ft);                  format_free(ft);

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20