diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-02-15 18:44:50 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-02-15 18:44:50 +0000 |
commit | 43fc412836a0a5c0f6b4e919a315c43cd2fef2c2 (patch) | |
tree | 56845293178fe9ded34c4bf31fe9970748571291 | |
parent | 07953ae0aa252979e4119be834327105e0e848c2 (diff) |
Sort some entries, from Ben Boeckel.
-rw-r--r-- | usr.bin/tmux/options-table.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/usr.bin/tmux/options-table.c b/usr.bin/tmux/options-table.c index e152a130eba..6b219bd4226 100644 --- a/usr.bin/tmux/options-table.c +++ b/usr.bin/tmux/options-table.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options-table.c,v 1.20 2012/01/29 09:37:02 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.21 2012/02/15 18:44:49 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicm@users.sourceforge.net> @@ -584,47 +584,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 }, |