diff options
author | Tiago Cunha <tcunha@gmx.com> | 2012-02-15 19:32:39 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2012-02-15 19:32:39 +0000 |
commit | 88f25bb6777218c2b35baeab19e262ff0dda1042 (patch) | |
tree | 3f134f14512bdc73bfd828f1c16c7754c27fd8e3 | |
parent | 290636bc869e383403905b22a0665079b5adef95 (diff) | |
download | rtmux-88f25bb6777218c2b35baeab19e262ff0dda1042.tar.gz rtmux-88f25bb6777218c2b35baeab19e262ff0dda1042.tar.bz2 rtmux-88f25bb6777218c2b35baeab19e262ff0dda1042.zip |
Sync OpenBSD patchset 1030:
Sort some entries, from Ben Boeckel.
-rw-r--r-- | options-table.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/options-table.c b/options-table.c index d5b8d216..8f525161 100644 --- a/options-table.c +++ b/options-table.c @@ -583,47 +583,47 @@ const struct options_table_entry window_options_table[] = { .default_num = 0 /* overridden in main() */ }, - { .name = "window-status-bell-attr", + { .name = "window-status-activity-attr", .type = OPTIONS_TABLE_ATTRIBUTES, .default_num = GRID_ATTR_REVERSE }, - { .name = "window-status-bell-bg", + { .name = "window-status-activity-bg", .type = OPTIONS_TABLE_COLOUR, .default_num = 8 }, - { .name = "window-status-bell-fg", + { .name = "window-status-activity-fg", .type = OPTIONS_TABLE_COLOUR, .default_num = 8 }, - { .name = "window-status-content-attr", + { .name = "window-status-bell-attr", .type = OPTIONS_TABLE_ATTRIBUTES, .default_num = GRID_ATTR_REVERSE }, - { .name = "window-status-content-bg", + { .name = "window-status-bell-bg", .type = OPTIONS_TABLE_COLOUR, .default_num = 8 }, - { .name = "window-status-content-fg", + { .name = "window-status-bell-fg", .type = OPTIONS_TABLE_COLOUR, .default_num = 8 }, - { .name = "window-status-activity-attr", + { .name = "window-status-content-attr", .type = OPTIONS_TABLE_ATTRIBUTES, .default_num = GRID_ATTR_REVERSE }, - { .name = "window-status-activity-bg", + { .name = "window-status-content-bg", .type = OPTIONS_TABLE_COLOUR, .default_num = 8 }, - { .name = "window-status-activity-fg", + { .name = "window-status-content-fg", .type = OPTIONS_TABLE_COLOUR, .default_num = 8 }, |