diff options
author | Thomas Adam <thomas@xteddy.org> | 2016-10-04 02:01:11 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2016-10-04 02:01:11 +0100 |
commit | 4740ecbeaef04ece4e58edc0e29a21cd5282896f (patch) | |
tree | ba76f611776380a344db073efd1e3f970bab1f40 /options-table.c | |
parent | ddfed259f69e7f4242bfba6095ce3928b81b21f0 (diff) | |
parent | 1b31d148c94f48932f439baa4d336e7de1035ddf (diff) | |
download | rtmux-4740ecbeaef04ece4e58edc0e29a21cd5282896f.tar.gz rtmux-4740ecbeaef04ece4e58edc0e29a21cd5282896f.tar.bz2 rtmux-4740ecbeaef04ece4e58edc0e29a21cd5282896f.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/options-table.c b/options-table.c index 4898e550..bf5e2459 100644 --- a/options-table.c +++ b/options-table.c @@ -32,25 +32,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 }; |