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

Diff for /src/usr.bin/tmux/cmd-bind-key.c between version 1.15 and 1.16

version 1.15, 2013/03/22 15:52:40 version 1.16, 2013/03/24 09:54:10
Line 28 
Line 28 
  */   */
   
 enum cmd_retval  cmd_bind_key_check(struct args *);  enum cmd_retval  cmd_bind_key_check(struct args *);
 enum cmd_retval  cmd_bind_key_exec(struct cmd *, struct cmd_ctx *);  enum cmd_retval  cmd_bind_key_exec(struct cmd *, struct cmd_q *);
   
 enum cmd_retval  cmd_bind_key_table(struct cmd *, struct cmd_ctx *, int);  enum cmd_retval  cmd_bind_key_table(struct cmd *, struct cmd_q *, int);
   
 const struct cmd_entry cmd_bind_key_entry = {  const struct cmd_entry cmd_bind_key_entry = {
         "bind-key", "bind",          "bind-key", "bind",
Line 56 
Line 56 
 }  }
   
 enum cmd_retval  enum cmd_retval
 cmd_bind_key_exec(struct cmd *self, struct cmd_ctx *ctx)  cmd_bind_key_exec(struct cmd *self, struct cmd_q *cmdq)
 {  {
         struct args     *args = self->args;          struct args     *args = self->args;
         char            *cause;          char            *cause;
Line 65 
Line 65 
   
         key = key_string_lookup_string(args->argv[0]);          key = key_string_lookup_string(args->argv[0]);
         if (key == KEYC_NONE) {          if (key == KEYC_NONE) {
                 ctx->error(ctx, "unknown key: %s", args->argv[0]);                  cmdq_error(cmdq, "unknown key: %s", args->argv[0]);
                 return (CMD_RETURN_ERROR);                  return (CMD_RETURN_ERROR);
         }          }
   
         if (args_has(args, 't'))          if (args_has(args, 't'))
                 return (cmd_bind_key_table(self, ctx, key));                  return (cmd_bind_key_table(self, cmdq, key));
   
         cmdlist = cmd_list_parse(args->argc - 1, args->argv + 1, &cause);          cmdlist = cmd_list_parse(args->argc - 1, args->argv + 1, NULL, 0,
               &cause);
         if (cmdlist == NULL) {          if (cmdlist == NULL) {
                 ctx->error(ctx, "%s", cause);                  cmdq_error(cmdq, "%s", cause);
                 free(cause);                  free(cause);
                 return (CMD_RETURN_ERROR);                  return (CMD_RETURN_ERROR);
         }          }
Line 86 
Line 87 
 }  }
   
 enum cmd_retval  enum cmd_retval
 cmd_bind_key_table(struct cmd *self, struct cmd_ctx *ctx, int key)  cmd_bind_key_table(struct cmd *self, struct cmd_q *cmdq, int key)
 {  {
         struct args                     *args = self->args;          struct args                     *args = self->args;
         const char                      *tablename;          const char                      *tablename;
Line 97 
Line 98 
   
         tablename = args_get(args, 't');          tablename = args_get(args, 't');
         if ((mtab = mode_key_findtable(tablename)) == NULL) {          if ((mtab = mode_key_findtable(tablename)) == NULL) {
                 ctx->error(ctx, "unknown key table: %s", tablename);                  cmdq_error(cmdq, "unknown key table: %s", tablename);
                 return (CMD_RETURN_ERROR);                  return (CMD_RETURN_ERROR);
         }          }
   
         cmd = mode_key_fromstring(mtab->cmdstr, args->argv[1]);          cmd = mode_key_fromstring(mtab->cmdstr, args->argv[1]);
         if (cmd == MODEKEY_NONE) {          if (cmd == MODEKEY_NONE) {
                 ctx->error(ctx, "unknown command: %s", args->argv[1]);                  cmdq_error(cmdq, "unknown command: %s", args->argv[1]);
                 return (CMD_RETURN_ERROR);                  return (CMD_RETURN_ERROR);
         }          }
   
         if (cmd != MODEKEYCOPY_COPYPIPE) {          if (cmd != MODEKEYCOPY_COPYPIPE) {
                 if (args->argc != 2) {                  if (args->argc != 2) {
                         ctx->error(ctx, "no argument allowed");                          cmdq_error(cmdq, "no argument allowed");
                         return (CMD_RETURN_ERROR);                          return (CMD_RETURN_ERROR);
                 }                  }
                 arg = NULL;                  arg = NULL;
         } else {          } else {
                 if (args->argc != 3) {                  if (args->argc != 3) {
                         ctx->error(ctx, "no argument given");                          cmdq_error(cmdq, "no argument given");
                         return (CMD_RETURN_ERROR);                          return (CMD_RETURN_ERROR);
                 }                  }
                 arg = args->argv[2];                  arg = args->argv[2];

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16