summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2012-02-15 18:44:49 +0000
committernicm <nicm@openbsd.org>2012-02-15 18:44:49 +0000
commit32cd6078ddfb0607a62bcafbf8e204e8ba84979e (patch)
tree12ebfd43f5845e7be016c9bd427284509c8aa828
parentAdd a wrapper function tty_set_size from George Nachman. (diff)
downloadwireguard-openbsd-32cd6078ddfb0607a62bcafbf8e204e8ba84979e.tar.xz
wireguard-openbsd-32cd6078ddfb0607a62bcafbf8e204e8ba84979e.zip
Sort some entries, from Ben Boeckel.
-rw-r--r--usr.bin/tmux/options-table.c20
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
},