=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options-table.c,v retrieving revision 1.55 retrieving revision 1.56 diff -c -r1.55 -r1.56 *** src/usr.bin/tmux/options-table.c 2015/04/19 21:34:21 1.55 --- src/usr.bin/tmux/options-table.c 2015/04/29 15:59:08 1.56 *************** *** 1,4 **** ! /* $OpenBSD: options-table.c,v 1.55 2015/04/19 21:34:21 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: options-table.c,v 1.56 2015/04/29 15:59:08 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott *************** *** 61,66 **** --- 61,71 ---- .default_num = 20 }, + { .name = "default-terminal", + .type = OPTIONS_TABLE_STRING, + .default_str = "screen" + }, + { .name = "escape-time", .type = OPTIONS_TABLE_NUMBER, .minimum = 0, *************** *** 141,151 **** { .name = "default-shell", .type = OPTIONS_TABLE_STRING, .default_str = _PATH_BSHELL - }, - - { .name = "default-terminal", - .type = OPTIONS_TABLE_STRING, - .default_str = "screen" }, { .name = "destroy-unattached", --- 146,151 ----