diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2013-03-21 16:50:23 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2013-03-21 16:50:23 +0000 |
commit | 31cdce0f1f8632fd2ac6d9512ab0e015ad99da0a (patch) | |
tree | a620764275a065fb151f2782dcf50f942accc5e3 /usr.bin/tmux/tmux.h | |
parent | c50c4cf9fa9a15be5f774c5a8fce032bfe331dd1 (diff) |
Tidy by splitting default key tables into two.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index b2f36a00a76..c099e554e21 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.380 2013/03/21 16:19:25 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.381 2013/03/21 16:50:22 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1674,7 +1674,7 @@ int tty_term_flag(struct tty_term *, enum tty_code_code); const char *tty_acs_get(struct tty *, u_char); /* tty-keys.c */ -void tty_keys_init(struct tty *); +void tty_keys_build(struct tty *); void tty_keys_free(struct tty *); int tty_keys_next(struct tty *); |