=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options-table.c,v retrieving revision 1.73 retrieving revision 1.74 diff -c -r1.73 -r1.74 *** src/usr.bin/tmux/options-table.c 2016/05/04 21:29:47 1.73 --- src/usr.bin/tmux/options-table.c 2016/10/03 22:52:11 1.74 *************** *** 1,4 **** ! /* $OpenBSD: options-table.c,v 1.73 2016/05/04 21:29:47 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: options-table.c,v 1.74 2016/10/03 22:52:11 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott *************** *** 33,57 **** */ /* Choice option type lists. */ ! const char *options_table_mode_keys_list[] = { "emacs", "vi", NULL }; ! const char *options_table_clock_mode_style_list[] = { "12", "24", NULL }; ! const char *options_table_status_keys_list[] = { "emacs", "vi", NULL }; ! const char *options_table_status_justify_list[] = { "left", "centre", "right", NULL }; ! const char *options_table_status_position_list[] = { "top", "bottom", NULL }; ! const char *options_table_bell_action_list[] = { "none", "any", "current", "other", NULL }; ! const char *options_table_pane_status_list[] = { "off", "top", "bottom", NULL }; --- 33,57 ---- */ /* Choice option type lists. */ ! static const char *options_table_mode_keys_list[] = { "emacs", "vi", NULL }; ! static const char *options_table_clock_mode_style_list[] = { "12", "24", NULL }; ! static const char *options_table_status_keys_list[] = { "emacs", "vi", NULL }; ! static const char *options_table_status_justify_list[] = { "left", "centre", "right", NULL }; ! static const char *options_table_status_position_list[] = { "top", "bottom", NULL }; ! static const char *options_table_bell_action_list[] = { "none", "any", "current", "other", NULL }; ! static const char *options_table_pane_status_list[] = { "off", "top", "bottom", NULL };