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

Diff for /src/usr.bin/tmux/Attic/cmd-unlink-window.c between version 1.11 and 1.12

version 1.11, 2012/07/11 07:10:15 version 1.12, 2013/03/24 09:54:10
Line 24 
Line 24 
  * Unlink a window, unless it would be destroyed by doing so (only one link).   * Unlink a window, unless it would be destroyed by doing so (only one link).
  */   */
   
 enum cmd_retval  cmd_unlink_window_exec(struct cmd *, struct cmd_ctx *);  enum cmd_retval  cmd_unlink_window_exec(struct cmd *, struct cmd_q *);
   
 const struct cmd_entry cmd_unlink_window_entry = {  const struct cmd_entry cmd_unlink_window_entry = {
         "unlink-window", "unlinkw",          "unlink-window", "unlinkw",
Line 37 
Line 37 
 };  };
   
 enum cmd_retval  enum cmd_retval
 cmd_unlink_window_exec(struct cmd *self, struct cmd_ctx *ctx)  cmd_unlink_window_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 46 
Line 46 
         struct session_group    *sg;          struct session_group    *sg;
         u_int                    references;          u_int                    references;
   
         if ((wl = cmd_find_window(ctx, args_get(args, 't'), &s)) == NULL)          if ((wl = cmd_find_window(cmdq, args_get(args, 't'), &s)) == NULL)
                 return (CMD_RETURN_ERROR);                  return (CMD_RETURN_ERROR);
         w = wl->window;          w = wl->window;
   
Line 59 
Line 59 
                 references = 1;                  references = 1;
   
         if (!args_has(self->args, 'k') && w->references == references) {          if (!args_has(self->args, 'k') && w->references == references) {
                 ctx->error(ctx, "window is only linked to one session");                  cmdq_error(cmdq, "window is only linked to one session");
                 return (CMD_RETURN_ERROR);                  return (CMD_RETURN_ERROR);
         }          }
   

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12