From 3665be7c4467126b64c43b8fd687dd3512ccc05a Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 21 Mar 2013 16:50:22 +0000 Subject: [PATCH] Tidy by splitting default key tables into two. --- tmux.h | 2 +- tty.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tmux.h b/tmux.h index b0e63069..1a2b4155 100644 --- a/tmux.h +++ b/tmux.h @@ -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 *); diff --git a/tty.c b/tty.c index 79cac5bb..9618a333 100644 --- a/tty.c +++ b/tty.c @@ -156,7 +156,7 @@ tty_open(struct tty *tty, const char *overrides, char **cause) tty_start_tty(tty); - tty_keys_init(tty); + tty_keys_build(tty); return (0); }