From f34ebfed7698ce41fe7bae756c0bb0c485e8bfdb Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 18 Mar 2019 21:46:01 +0000 Subject: The individual -fg, -bg and -attr options have been deprecated (in favour of -style), undocumented and hidden from show-options since 2014. Remove them, except for status-fg and status-bg. --- cmd-show-options.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'cmd-show-options.c') diff --git a/cmd-show-options.c b/cmd-show-options.c index 872f0c45..79827e32 100644 --- a/cmd-show-options.c +++ b/cmd-show-options.c @@ -173,10 +173,6 @@ cmd_show_options_all(struct cmd *self, struct cmdq_item *item, 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 { -- cgit