diff options
author | 2016-10-10 21:29:23 +0000 | |
---|---|---|
committer | 2016-10-10 21:29:23 +0000 | |
commit | 9883b791a07beb4d0cb6aad5076fe1790df94392 (patch) | |
tree | f57a4fead4e6082c2f973c34b5b8a3d46ef3191e /usr.bin/tmux/tty-keys.c | |
parent | The TLS error message depends on the generated fake certificate. (diff) | |
download | wireguard-openbsd-9883b791a07beb4d0cb6aad5076fe1790df94392.tar.xz wireguard-openbsd-9883b791a07beb4d0cb6aad5076fe1790df94392.zip |
Loads more static, except for cmd-*.c and window-*.c.
Diffstat (limited to 'usr.bin/tmux/tty-keys.c')
-rw-r--r-- | usr.bin/tmux/tty-keys.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/tty-keys.c b/usr.bin/tmux/tty-keys.c index a86cebf2d3e..896f36cbe95 100644 --- a/usr.bin/tmux/tty-keys.c +++ b/usr.bin/tmux/tty-keys.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty-keys.c,v 1.89 2016/04/29 10:42:16 nicm Exp $ */ +/* $OpenBSD: tty-keys.c,v 1.90 2016/10/10 21:29:23 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -50,7 +50,7 @@ struct tty_default_key_raw { const char *string; key_code key; }; -const struct tty_default_key_raw tty_default_raw_keys[] = { +static const struct tty_default_key_raw tty_default_raw_keys[] = { /* * Numeric keypad. Just use the vt100 escape sequences here and always * put the terminal into keypad_xmit mode. Translation of numbers @@ -170,7 +170,7 @@ struct tty_default_key_code { enum tty_code_code code; key_code key; }; -const struct tty_default_key_code tty_default_code_keys[] = { +static const struct tty_default_key_code tty_default_code_keys[] = { /* Function keys. */ { TTYC_KF1, KEYC_F1 }, { TTYC_KF2, KEYC_F2 }, |