diff options
author | 2009-07-12 23:46:49 +0000 | |
---|---|---|
committer | 2009-07-12 23:46:49 +0000 | |
commit | 1f379ebf6085742e65d54bcdfdf5f999549adc88 (patch) | |
tree | 1e55b820227aab3f24ac08e88a70c47ce7f0ff57 | |
parent | Document the -k flag to new-window. (diff) | |
download | wireguard-openbsd-1f379ebf6085742e65d54bcdfdf5f999549adc88.tar.xz wireguard-openbsd-1f379ebf6085742e65d54bcdfdf5f999549adc88.zip |
Missed this declaration in key bindings change. Whoops.
-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 *); |