diff options
author | nicm <nicm> | 2019-03-18 21:46:01 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-03-18 21:46:01 +0000 |
commit | f34ebfed7698ce41fe7bae756c0bb0c485e8bfdb (patch) | |
tree | 4616d578f2334bf5a0cb2cc0ab4bc00e902da674 /cmd-show-options.c | |
parent | c62404673e873c7fae7151a6e910f1b9354b7ecf (diff) | |
download | rtmux-f34ebfed7698ce41fe7bae756c0bb0c485e8bfdb.tar.gz rtmux-f34ebfed7698ce41fe7bae756c0bb0c485e8bfdb.tar.bz2 rtmux-f34ebfed7698ce41fe7bae756c0bb0c485e8bfdb.zip |
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.
Diffstat (limited to 'cmd-show-options.c')
-rw-r--r-- | cmd-show-options.c | 4 |
1 files changed, 0 insertions, 4 deletions
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 { |