=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options.c,v retrieving revision 1.8 retrieving revision 1.9 diff -c -r1.8 -r1.9 *** src/usr.bin/tmux/options.c 2012/07/10 11:53:01 1.8 --- src/usr.bin/tmux/options.c 2014/01/09 13:58:06 1.9 *************** *** 1,4 **** ! /* $OpenBSD: options.c,v 1.8 2012/07/10 11:53:01 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: options.c,v 1.9 2014/01/09 13:58:06 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott *************** *** 26,32 **** /* * Option handling; each option has a name, type and value and is stored in ! * a splay tree. */ RB_GENERATE(options_tree, options_entry, entry, options_cmp); --- 26,32 ---- /* * Option handling; each option has a name, type and value and is stored in ! * a red-black tree. */ RB_GENERATE(options_tree, options_entry, entry, options_cmp);