[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.10 and 1.11

version 1.10, 2011/01/04 00:42:47 version 1.11, 2012/07/11 07:10:15
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).
  */   */
   
 int     cmd_unlink_window_exec(struct cmd *, struct cmd_ctx *);  enum cmd_retval  cmd_unlink_window_exec(struct cmd *, struct cmd_ctx *);
   
 const struct cmd_entry cmd_unlink_window_entry = {  const struct cmd_entry cmd_unlink_window_entry = {
         "unlink-window", "unlinkw",          "unlink-window", "unlinkw",
Line 36 
Line 36 
         cmd_unlink_window_exec          cmd_unlink_window_exec
 };  };
   
 int  enum cmd_retval
 cmd_unlink_window_exec(struct cmd *self, struct cmd_ctx *ctx)  cmd_unlink_window_exec(struct cmd *self, struct cmd_ctx *ctx)
 {  {
         struct args             *args = self->args;          struct args             *args = self->args;
Line 47 
Line 47 
         u_int                    references;          u_int                    references;
   
         if ((wl = cmd_find_window(ctx, args_get(args, 't'), &s)) == NULL)          if ((wl = cmd_find_window(ctx, args_get(args, 't'), &s)) == NULL)
                 return (-1);                  return (CMD_RETURN_ERROR);
         w = wl->window;          w = wl->window;
   
         sg = session_group_find(s);          sg = session_group_find(s);
Line 60 
Line 60 
   
         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");                  ctx->error(ctx, "window is only linked to one session");
                 return (-1);                  return (CMD_RETURN_ERROR);
         }          }
   
         server_unlink_window(s, wl);          server_unlink_window(s, wl);
         recalculate_sizes();          recalculate_sizes();
   
         return (0);          return (CMD_RETURN_NORMAL);
 }  }

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