=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-show-options.c,v retrieving revision 1.43 retrieving revision 1.44 diff -c -r1.43 -r1.44 *** src/usr.bin/tmux/cmd-show-options.c 2019/03/18 11:58:40 1.43 --- src/usr.bin/tmux/cmd-show-options.c 2019/03/18 21:46:02 1.44 *************** *** 1,4 **** ! /* $OpenBSD: cmd-show-options.c,v 1.43 2019/03/18 11:58:40 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-show-options.c,v 1.44 2019/03/18 21:46:02 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 173,182 **** o = options_first(oo); while (o != NULL) { oe = options_table_entry(o); - if (oe != NULL && oe->style != NULL) { - o = options_next(o); - continue; - } if (!options_isarray(o)) cmd_show_options_print(self, item, o, -1); else { --- 173,178 ----