diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2016-01-06 19:39:44 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2016-01-06 19:39:44 +0100 |
commit | 432f4247d83a95f8ee0efe29bba3860a0f70cd11 (patch) | |
tree | d3c3bf936fd8c4116f9743447f330fe8cc41cef1 | |
parent | 101fa2cab809cc051f0e441b1e5f48d7408ce052 (diff) | |
parent | 168764a81e1bd80ee9b3081cee1cbf0a66954fa5 (diff) | |
download | weechat-432f4247d83a95f8ee0efe29bba3860a0f70cd11.zip |
Merge pull request #648 from sim642/nicklist_offline
core: remove unused option weechat.color.nicklist_offline
-rw-r--r-- | src/core/wee-config.c | 7 | ||||
-rw-r--r-- | src/core/wee-config.h | 1 |
2 files changed, 0 insertions, 8 deletions
diff --git a/src/core/wee-config.c b/src/core/wee-config.c index f18eecefb..a79f5f547 100644 --- a/src/core/wee-config.c +++ b/src/core/wee-config.c @@ -231,7 +231,6 @@ struct t_config_option *config_color_input_actions; struct t_config_option *config_color_input_text_not_found; struct t_config_option *config_color_nicklist_away; struct t_config_option *config_color_nicklist_group; -struct t_config_option *config_color_nicklist_offline; struct t_config_option *config_color_separator; struct t_config_option *config_color_status_count_highlight; struct t_config_option *config_color_status_count_msg; @@ -3270,12 +3269,6 @@ config_weechat_init_options () N_("text color for groups in nicklist"), NULL, -1, 0, "green", NULL, 0, NULL, NULL, &config_change_color, NULL, NULL, NULL); - config_color_nicklist_offline = config_file_new_option ( - weechat_config_file, ptr_section, - "nicklist_offline", "color", - N_("text color for offline nicknames"), - NULL, -1, 0, "blue", NULL, 0, - NULL, NULL, &config_change_color, NULL, NULL, NULL); /* general color settings */ config_color_separator = config_file_new_option ( weechat_config_file, ptr_section, diff --git a/src/core/wee-config.h b/src/core/wee-config.h index 8e7dcaaea..aad2ba0b5 100644 --- a/src/core/wee-config.h +++ b/src/core/wee-config.h @@ -275,7 +275,6 @@ extern struct t_config_option *config_color_input_actions; extern struct t_config_option *config_color_input_text_not_found; extern struct t_config_option *config_color_nicklist_away; extern struct t_config_option *config_color_nicklist_group; -extern struct t_config_option *config_color_nicklist_offline; extern struct t_config_option *config_color_separator; extern struct t_config_option *config_color_status_count_highlight; extern struct t_config_option *config_color_status_count_msg; |