=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options-table.c,v retrieving revision 1.140 retrieving revision 1.141 diff -c -r1.140 -r1.141 *** src/usr.bin/tmux/options-table.c 2021/03/11 06:41:04 1.140 --- src/usr.bin/tmux/options-table.c 2021/06/10 07:24:10 1.141 *************** *** 1,4 **** ! /* $OpenBSD: options-table.c,v 1.140 2021/03/11 06:41:04 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: options-table.c,v 1.141 2021/06/10 07:24:10 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott *************** *** 75,80 **** --- 75,83 ---- static const char *options_table_detach_on_destroy_list[] = { "off", "on", "no-detached", NULL }; + static const char *options_table_extended_keys_list[] = { + "off", "on", "always", NULL + }; /* Status line format. */ #define OPTIONS_TABLE_STATUS_FORMAT1 \ *************** *** 267,274 **** }, { .name = "extended-keys", ! .type = OPTIONS_TABLE_FLAG, .scope = OPTIONS_TABLE_SERVER, .default_num = 0, .text = "Whether to request extended key sequences from terminals " "that support it." --- 270,278 ---- }, { .name = "extended-keys", ! .type = OPTIONS_TABLE_CHOICE, .scope = OPTIONS_TABLE_SERVER, + .choices = options_table_extended_keys_list, .default_num = 0, .text = "Whether to request extended key sequences from terminals " "that support it."