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

Diff for /src/usr.bin/tmux/Attic/cmd-choose-buffer.c between version 1.13 and 1.14

version 1.13, 2013/03/21 16:09:59 version 1.14, 2013/03/24 09:54:10
Line 27 
Line 27 
  * Enter choice mode to choose a buffer.   * Enter choice mode to choose a buffer.
  */   */
   
 enum cmd_retval  cmd_choose_buffer_exec(struct cmd *, struct cmd_ctx *);  enum cmd_retval  cmd_choose_buffer_exec(struct cmd *, struct cmd_q *);
   
 const struct cmd_entry cmd_choose_buffer_entry = {  const struct cmd_entry cmd_choose_buffer_entry = {
         "choose-buffer", NULL,          "choose-buffer", NULL,
Line 40 
Line 40 
 };  };
   
 enum cmd_retval  enum cmd_retval
 cmd_choose_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)  cmd_choose_buffer_exec(struct cmd *self, struct cmd_q *cmdq)
 {  {
         struct args                     *args = self->args;          struct args                     *args = self->args;
         struct client                   *c;          struct client                   *c;
Line 51 
Line 51 
         const char                      *template;          const char                      *template;
         u_int                            idx;          u_int                            idx;
   
         if ((c = cmd_current_client(ctx)) == NULL) {          if ((c = cmd_current_client(cmdq)) == NULL) {
                 ctx->error(ctx, "no client available");                  cmdq_error(cmdq, "no client available");
                 return (CMD_RETURN_ERROR);                  return (CMD_RETURN_ERROR);
         }          }
   
         if ((template = args_get(args, 'F')) == NULL)          if ((template = args_get(args, 'F')) == NULL)
                 template = CHOOSE_BUFFER_TEMPLATE;                  template = CHOOSE_BUFFER_TEMPLATE;
   
         if ((wl = cmd_find_window(ctx, args_get(args, 't'), NULL)) == NULL)          if ((wl = cmd_find_window(cmdq, args_get(args, 't'), NULL)) == NULL)
                 return (CMD_RETURN_ERROR);                  return (CMD_RETURN_ERROR);
   
         if (paste_get_top(&global_buffers) == NULL)          if (paste_get_top(&global_buffers) == NULL)

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14