=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options-table.c,v retrieving revision 1.15 retrieving revision 1.16 diff -c -r1.15 -r1.16 *** src/usr.bin/tmux/options-table.c 2011/11/05 09:06:31 1.15 --- src/usr.bin/tmux/options-table.c 2011/11/15 23:24:04 1.16 *************** *** 1,4 **** ! /* $OpenBSD: options-table.c,v 1.15 2011/11/05 09:06:31 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: options-table.c,v 1.16 2011/11/15 23:24:04 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott *************** *** 421,426 **** --- 421,431 ---- .default_num = 0 }, + { .name = "word-separators", + .type = OPTIONS_TABLE_STRING, + .default_str = " -_@" + }, + { .name = NULL } }; *************** *** 613,623 **** { .name = "window-status-format", .type = OPTIONS_TABLE_STRING, .default_str = "#I:#W#F" - }, - - { .name = "word-separators", - .type = OPTIONS_TABLE_STRING, - .default_str = " -_@" }, { .name = "xterm-keys", --- 618,623 ----