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

Diff for /src/usr.bin/tmux/cmd-unbind-key.c between version 1.10 and 1.11

version 1.10, 2011/01/10 21:28:47 version 1.11, 2011/08/16 09:37:48
Line 59 
Line 59 
         if (args_has(args, 'a')) {          if (args_has(args, 'a')) {
                 while (!SPLAY_EMPTY(&key_bindings)) {                  while (!SPLAY_EMPTY(&key_bindings)) {
                         bd = SPLAY_ROOT(&key_bindings);                          bd = SPLAY_ROOT(&key_bindings);
                         SPLAY_REMOVE(key_bindings, &key_bindings, bd);                          key_bindings_remove(bd->key);
                         cmd_list_free(bd->cmdlist);  
                         xfree(bd);  
                 }                  }
                 return (0);                  return (0);
         }          }

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