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 /tmux.h | |
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 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -1518,7 +1518,6 @@ enum options_table_type { OPTIONS_TABLE_NUMBER, OPTIONS_TABLE_KEY, OPTIONS_TABLE_COLOUR, - OPTIONS_TABLE_ATTRIBUTES, OPTIONS_TABLE_FLAG, OPTIONS_TABLE_CHOICE, OPTIONS_TABLE_STYLE, @@ -1546,7 +1545,6 @@ struct options_table_entry { const char **default_arr; const char *separator; - const char *style; const char *pattern; }; @@ -1723,10 +1721,6 @@ struct options_entry *options_set_style(struct options *, const char *, int, const char *); enum options_table_scope options_scope_from_flags(struct args *, int, struct cmd_find_state *, struct options **, char **); -void options_style_update_new(struct options *, - struct options_entry *); -void options_style_update_old(struct options *, - struct options_entry *); /* options-table.c */ extern const struct options_table_entry options_table[]; |