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

Diff for /src/usr.bin/tmux/cmd-kill-pane.c between version 1.5 and 1.6

version 1.5, 2009/07/26 12:58:44 version 1.6, 2009/07/30 13:45:56
Line 30 
Line 30 
   
 const struct cmd_entry cmd_kill_pane_entry = {  const struct cmd_entry cmd_kill_pane_entry = {
         "kill-pane", "killp",          "kill-pane", "killp",
         CMD_PANE_WINDOW_USAGE,          CMD_TARGET_PANE_USAGE,
         0, 0,          0, 0,
         cmd_pane_init,          cmd_target_init,
         cmd_pane_parse,          cmd_target_parse,
         cmd_kill_pane_exec,          cmd_kill_pane_exec,
         cmd_pane_free,          cmd_target_free,
         cmd_pane_print          cmd_target_print
 };  };
   
 int  int
 cmd_kill_pane_exec(struct cmd *self, struct cmd_ctx *ctx)  cmd_kill_pane_exec(struct cmd *self, struct cmd_ctx *ctx)
 {  {
         struct cmd_pane_data    *data = self->data;          struct cmd_target_data  *data = self->data;
         struct winlink          *wl;          struct winlink          *wl;
         struct window_pane      *wp;          struct window_pane      *wp;
   
         if ((wl = cmd_find_window(ctx, data->target, NULL)) == NULL)          if ((wl = cmd_find_pane(ctx, data->target, NULL, &wp)) == NULL)
                 return (-1);                  return (-1);
         if (data->pane == -1)  
                 wp = wl->window->active;  
         else {  
                 wp = window_pane_at_index(wl->window, data->pane);  
                 if (wp == NULL) {  
                         ctx->error(ctx, "no pane: %d", data->pane);  
                         return (-1);  
                 }  
         }  
   
         if (window_count_panes(wl->window) == 1) {          if (window_count_panes(wl->window) == 1) {
                 /* Only one pane, kill the window. */                  /* Only one pane, kill the window. */

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6