diff options
-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; |