[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.12 and 1.13

version 1.12, 2012/01/21 11:12:13 version 1.13, 2012/07/10 11:53:01
Line 18 
Line 18 
   
 #include <sys/types.h>  #include <sys/types.h>
   
   #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
 #include "tmux.h"  #include "tmux.h"
Line 74 
Line 75 
         cmdlist = cmd_list_parse(args->argc - 1, args->argv + 1, &cause);          cmdlist = cmd_list_parse(args->argc - 1, args->argv + 1, &cause);
         if (cmdlist == NULL) {          if (cmdlist == NULL) {
                 ctx->error(ctx, "%s", cause);                  ctx->error(ctx, "%s", cause);
                 xfree(cause);                  free(cause);
                 return (-1);                  return (-1);
         }          }
   

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