=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options-table.c,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- src/usr.bin/tmux/options-table.c 2014/01/28 23:11:44 1.44 +++ src/usr.bin/tmux/options-table.c 2014/02/23 00:53:06 1.45 @@ -1,4 +1,4 @@ -/* $OpenBSD: options-table.c,v 1.44 2014/01/28 23:11:44 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.45 2014/02/23 00:53:06 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott @@ -91,6 +91,14 @@ .default_num = 1 }, + { .name = "terminal-overrides", + .type = OPTIONS_TABLE_STRING, + .default_str = "*256col*:colors=256" + ",xterm*:XT:Ms=\\E]52;%p1%s;%p2%s\\007" + ":Cs=\\E]12;%p1%s\\007:Cr=\\E]112\\007" + ":Ss=\\E[%p1%d q:Se=\\E[2 q,screen*:XT" + }, + { .name = NULL } }; @@ -464,14 +472,6 @@ { .name = "status-utf8", .type = OPTIONS_TABLE_FLAG, .default_num = 0 /* overridden in main() */ - }, - - { .name = "terminal-overrides", - .type = OPTIONS_TABLE_STRING, - .default_str = "*256col*:colors=256" - ",xterm*:XT:Ms=\\E]52;%p1%s;%p2%s\\007" - ":Cs=\\E]12;%p1%s\\007:Cr=\\E]112\\007" - ":Ss=\\E[%p1%d q:Se=\\E[2 q,screen*:XT" }, { .name = "update-environment",