diff options
author | nicm <nicm> | 2014-05-14 06:21:19 +0000 |
---|---|---|
committer | nicm <nicm> | 2014-05-14 06:21:19 +0000 |
commit | 53cbae544f79daede0f9457f31947f5d001ac788 (patch) | |
tree | 5eb5e06ff6f12b1dda86a4d1a219e24c7bf7cb53 /tmux.h | |
parent | b2e791b574a60e481d2a5813157ab00cb99cc32f (diff) | |
download | rtmux-53cbae544f79daede0f9457f31947f5d001ac788.tar.gz rtmux-53cbae544f79daede0f9457f31947f5d001ac788.tar.bz2 rtmux-53cbae544f79daede0f9457f31947f5d001ac788.zip |
Now that cmdlists are reference counted, there is no need for two-step
deletion via the dead_key_bindings tree. From Keith Amling.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -1889,7 +1889,6 @@ RB_PROTOTYPE(key_bindings, key_binding, entry, key_bindings_cmp); struct key_binding *key_bindings_lookup(int); void key_bindings_add(int, int, struct cmd_list *); void key_bindings_remove(int); -void key_bindings_clean(void); void key_bindings_init(void); void key_bindings_dispatch(struct key_binding *, struct client *); |