From 0b788a3d61994e5a7a98e36d104c130dcbb5e0c9 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 12 Jul 2009 23:46:49 +0000 Subject: [PATCH] Missed this declaration in key bindings change. Whoops. --- tmux.h | 1 + 1 file changed, 1 insertion(+) diff --git a/tmux.h b/tmux.h index 3aed2560..28778e9f 100644 --- a/tmux.h +++ b/tmux.h @@ -1239,6 +1239,7 @@ SPLAY_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_free(void); void key_bindings_dispatch(struct key_binding *, struct client *);