=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options-table.c,v retrieving revision 1.142 retrieving revision 1.143 diff -c -r1.142 -r1.143 *** src/usr.bin/tmux/options-table.c 2021/06/10 07:50:03 1.142 --- src/usr.bin/tmux/options-table.c 2021/06/10 07:56:47 1.143 *************** *** 1,4 **** ! /* $OpenBSD: options-table.c,v 1.142 2021/06/10 07:50:03 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: options-table.c,v 1.143 2021/06/10 07:56:47 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott *************** *** 755,761 **** { .name = "word-separators", .type = OPTIONS_TABLE_STRING, .scope = OPTIONS_TABLE_SESSION, ! .default_str = " ", .text = "Characters considered to separate words." }, --- 755,765 ---- { .name = "word-separators", .type = OPTIONS_TABLE_STRING, .scope = OPTIONS_TABLE_SESSION, ! /* ! * The set of non-alphanumeric printable ASCII characters minus the ! * underscore. ! */ ! .default_str = "!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~", .text = "Characters considered to separate words." },