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

Diff for /src/usr.bin/tmux/cmd-list-keys.c between version 1.26 and 1.27

version 1.26, 2015/04/20 15:34:56 version 1.27, 2015/10/26 22:03:04
Line 77 
Line 77 
                         continue;                          continue;
                 RB_FOREACH(bd, key_bindings, &table->key_bindings) {                  RB_FOREACH(bd, key_bindings, &table->key_bindings) {
                         key = key_string_lookup_key(bd->key);                          key = key_string_lookup_key(bd->key);
                         if (key == NULL)  
                                 continue;  
   
                         if (bd->can_repeat)                          if (bd->can_repeat)
                                 repeat = 1;                                  repeat = 1;
Line 97 
Line 95 
                         continue;                          continue;
                 RB_FOREACH(bd, key_bindings, &table->key_bindings) {                  RB_FOREACH(bd, key_bindings, &table->key_bindings) {
                         key = key_string_lookup_key(bd->key);                          key = key_string_lookup_key(bd->key);
                         if (key == NULL)  
                                 continue;  
   
                         if (!repeat)                          if (!repeat)
                                 r = "";                                  r = "";
Line 140 
Line 136 
         any_mode = 0;          any_mode = 0;
         RB_FOREACH(mbind, mode_key_tree, mtab->tree) {          RB_FOREACH(mbind, mode_key_tree, mtab->tree) {
                 key = key_string_lookup_key(mbind->key);                  key = key_string_lookup_key(mbind->key);
                 if (key == NULL)  
                         continue;  
   
                 if (mbind->mode != 0)                  if (mbind->mode != 0)
                         any_mode = 1;                          any_mode = 1;
Line 153 
Line 147 
   
         RB_FOREACH(mbind, mode_key_tree, mtab->tree) {          RB_FOREACH(mbind, mode_key_tree, mtab->tree) {
                 key = key_string_lookup_key(mbind->key);                  key = key_string_lookup_key(mbind->key);
                 if (key == NULL)  
                         continue;  
   
                 mode = "";                  mode = "";
                 if (mbind->mode != 0)                  if (mbind->mode != 0)

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27