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/tty.c | |
parent | c50c4cf9fa9a15be5f774c5a8fce032bfe331dd1 (diff) |
Tidy by splitting default key tables into two.
Diffstat (limited to 'usr.bin/tmux/tty.c')
-rw-r--r-- | usr.bin/tmux/tty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c index 7818a9f1988..8db136987d8 100644 --- a/usr.bin/tmux/tty.c +++ b/usr.bin/tmux/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.147 2013/01/18 02:16:21 nicm Exp $ */ +/* $OpenBSD: tty.c,v 1.148 2013/03/21 16:50:22 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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); } |