diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-12 23:46:50 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-12 23:46:50 +0000 |
commit | d6e1452c77c0bb7d57883834f920672df6cc85c3 (patch) | |
tree | c9897bde54362c108bf106ca22f974773ef4e7df /usr.bin | |
parent | a0d35df85bb82500dba98a51d3e1e29ce56c7ef1 (diff) |
Missed this declaration in key bindings change. Whoops.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 0350b834c66..fea65a71754 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.23 2009/07/12 16:15:34 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.24 2009/07/12 23:46:49 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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 *); |