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

Diff for /src/usr.bin/tmux/key-bindings.c between version 1.132 and 1.133

version 1.132, 2020/10/13 10:15:23 version 1.133, 2021/06/10 07:21:09
Line 215 
Line 215 
         if (repeat)          if (repeat)
                 bd->flags |= KEY_BINDING_REPEAT;                  bd->flags |= KEY_BINDING_REPEAT;
         bd->cmdlist = cmdlist;          bd->cmdlist = cmdlist;
   
           log_debug("%s: %#llx %s = %s", __func__, bd->key,
               key_string_lookup_key(bd->key, 1), cmd_list_print(bd->cmdlist, 0));
 }  }
   
 void  void
Line 230 
Line 233 
         bd = key_bindings_get(table, key & ~KEYC_MASK_FLAGS);          bd = key_bindings_get(table, key & ~KEYC_MASK_FLAGS);
         if (bd == NULL)          if (bd == NULL)
                 return;                  return;
   
           log_debug("%s: %#llx %s", __func__, bd->key,
               key_string_lookup_key(bd->key, 1));
   
         RB_REMOVE(key_bindings, &table->key_bindings, bd);          RB_REMOVE(key_bindings, &table->key_bindings, bd);
         key_bindings_free(bd);          key_bindings_free(bd);

Legend:
Removed from v.1.132  
changed lines
  Added in v.1.133