=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options-table.c,v retrieving revision 1.133 retrieving revision 1.134 diff -c -r1.133 -r1.134 *** src/usr.bin/tmux/options-table.c 2020/07/24 07:05:37 1.133 --- src/usr.bin/tmux/options-table.c 2020/08/25 11:35:32 1.134 *************** *** 1,4 **** ! /* $OpenBSD: options-table.c,v 1.133 2020/07/24 07:05:37 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: options-table.c,v 1.134 2020/08/25 11:35:32 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott *************** *** 170,175 **** --- 170,183 ---- .default_str = default_value, \ .separator = "" \ } + + /* Map of name conversions. */ + const struct options_name_map options_other_names[] = { + { "display-panes-color", "display-panes-colour" }, + { "display-panes-active-color", "display-panes-active-colour" }, + { "clock-mode-color", "clock-mode-colour" }, + { NULL, NULL } + }; /* Top-level options. */ const struct options_table_entry options_table[] = {