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

Diff for /src/usr.bin/tmux/cmd-command-prompt.c between version 1.20 and 1.21

version 1.20, 2012/07/10 11:53:01 version 1.21, 2012/07/11 07:10:15
Line 31 
Line 31 
   
 void    cmd_command_prompt_key_binding(struct cmd *, int);  void    cmd_command_prompt_key_binding(struct cmd *, int);
 int     cmd_command_prompt_check(struct args *);  int     cmd_command_prompt_check(struct args *);
 int     cmd_command_prompt_exec(struct cmd *, struct cmd_ctx *);  enum cmd_retval cmd_command_prompt_exec(struct cmd *, struct cmd_ctx *);
   
 int     cmd_command_prompt_callback(void *, const char *);  int     cmd_command_prompt_callback(void *, const char *);
 void    cmd_command_prompt_free(void *);  void    cmd_command_prompt_free(void *);
Line 84 
Line 84 
         }          }
 }  }
   
 int  enum cmd_retval
 cmd_command_prompt_exec(struct cmd *self, struct cmd_ctx *ctx)  cmd_command_prompt_exec(struct cmd *self, struct cmd_ctx *ctx)
 {  {
         struct args                     *args = self->args;          struct args                     *args = self->args;
Line 95 
Line 95 
         size_t                           n;          size_t                           n;
   
         if ((c = cmd_find_client(ctx, args_get(args, 't'))) == NULL)          if ((c = cmd_find_client(ctx, args_get(args, 't'))) == NULL)
                 return (-1);                  return (CMD_RETURN_ERROR);
   
         if (c->prompt_string != NULL)          if (c->prompt_string != NULL)
                 return (0);                  return (CMD_RETURN_NORMAL);
   
         cdata = xmalloc(sizeof *cdata);          cdata = xmalloc(sizeof *cdata);
         cdata->c = c;          cdata->c = c;
Line 141 
Line 141 
             cmd_command_prompt_free, cdata, 0);              cmd_command_prompt_free, cdata, 0);
         free(prompt);          free(prompt);
   
         return (0);          return (CMD_RETURN_NORMAL);
 }  }
   
 int  int

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