summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/options-table.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2016-10-03 22:52:12 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2016-10-03 22:52:12 +0000
commit41aee2a04dda6d0cee33c377341d0c56e3f40810 (patch)
tree58462008f1ee27ef0f6a0c62753c28cd87199b40 /usr.bin/tmux/options-table.c
parent752528b588c78fc6cbfcb6fd830ec72fe0f39217 (diff)
Remove some dead code in cmd-move-window.c and make a load of local
functions static.
Diffstat (limited to 'usr.bin/tmux/options-table.c')
-rw-r--r--usr.bin/tmux/options-table.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/tmux/options-table.c b/usr.bin/tmux/options-table.c
index 5914176356f..b978779614c 100644
--- a/usr.bin/tmux/options-table.c
+++ b/usr.bin/tmux/options-table.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: options-table.c,v 1.73 2016/05/04 21:29:47 nicm Exp $ */
+/* $OpenBSD: options-table.c,v 1.74 2016/10/03 22:52:11 nicm Exp $ */
/*
* Copyright (c) 2011 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -33,25 +33,25 @@
*/
/* Choice option type lists. */
-const char *options_table_mode_keys_list[] = {
+static const char *options_table_mode_keys_list[] = {
"emacs", "vi", NULL
};
-const char *options_table_clock_mode_style_list[] = {
+static const char *options_table_clock_mode_style_list[] = {
"12", "24", NULL
};
-const char *options_table_status_keys_list[] = {
+static const char *options_table_status_keys_list[] = {
"emacs", "vi", NULL
};
-const char *options_table_status_justify_list[] = {
+static const char *options_table_status_justify_list[] = {
"left", "centre", "right", NULL
};
-const char *options_table_status_position_list[] = {
+static const char *options_table_status_position_list[] = {
"top", "bottom", NULL
};
-const char *options_table_bell_action_list[] = {
+static const char *options_table_bell_action_list[] = {
"none", "any", "current", "other", NULL
};
-const char *options_table_pane_status_list[] = {
+static const char *options_table_pane_status_list[] = {
"off", "top", "bottom", NULL
};