=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options-table.c,v retrieving revision 1.88 retrieving revision 1.89 diff -c -r1.88 -r1.89 *** src/usr.bin/tmux/options-table.c 2017/05/30 21:44:59 1.88 --- src/usr.bin/tmux/options-table.c 2017/06/03 17:43:01 1.89 *************** *** 1,4 **** ! /* $OpenBSD: options-table.c,v 1.88 2017/05/30 21:44:59 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: options-table.c,v 1.89 2017/06/03 17:43:01 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott *************** *** 54,59 **** --- 54,62 ---- static const char *options_table_pane_status_list[] = { "off", "top", "bottom", NULL }; + static const char *options_table_set_clipboard_list[] = { + "off", "external", "on", NULL + }; /* Top-level options. */ const struct options_table_entry options_table[] = { *************** *** 118,125 **** }, { .name = "set-clipboard", ! .type = OPTIONS_TABLE_FLAG, .scope = OPTIONS_TABLE_SERVER, .default_num = 1 }, --- 121,129 ---- }, { .name = "set-clipboard", ! .type = OPTIONS_TABLE_CHOICE, .scope = OPTIONS_TABLE_SERVER, + .choices = options_table_set_clipboard_list, .default_num = 1 },