summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimmo Saan <simmo.saan@gmail.com>2016-01-06 17:12:39 +0200
committerSimmo Saan <simmo.saan@gmail.com>2016-01-06 17:12:39 +0200
commit168764a81e1bd80ee9b3081cee1cbf0a66954fa5 (patch)
treed3c3bf936fd8c4116f9743447f330fe8cc41cef1
parentirc: fix channel forwarding (closes #643) (diff)
downloadweechat-168764a81e1bd80ee9b3081cee1cbf0a66954fa5.tar.xz
weechat-168764a81e1bd80ee9b3081cee1cbf0a66954fa5.zip
core: remove unused option weechat.color.nicklist_offline
Added in c1c1005b364d28409339f46b5233bcb0f2f86ed7.
-rw-r--r--src/core/wee-config.c7
-rw-r--r--src/core/wee-config.h1
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;