summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/wee-config.c35
-rw-r--r--src/core/wee-config.h5
2 files changed, 0 insertions, 40 deletions
diff --git a/src/core/wee-config.c b/src/core/wee-config.c
index 9170700e1..7f8f5f111 100644
--- a/src/core/wee-config.c
+++ b/src/core/wee-config.c
@@ -155,11 +155,6 @@ struct t_config_option *config_color_input_actions;
struct t_config_option *config_color_nicklist_group;
struct t_config_option *config_color_nicklist_away;
struct t_config_option *config_color_nicklist_offline;
-struct t_config_option *config_color_nicklist_prefix1;
-struct t_config_option *config_color_nicklist_prefix2;
-struct t_config_option *config_color_nicklist_prefix3;
-struct t_config_option *config_color_nicklist_prefix4;
-struct t_config_option *config_color_nicklist_prefix5;
/* config, completion section */
@@ -1836,36 +1831,6 @@ config_weechat_init_options ()
N_("text color for offline nicknames"),
NULL, -1, 0, "blue", NULL, 0,
NULL, NULL, &config_change_color, NULL, NULL, NULL);
- config_color_nicklist_prefix1 = config_file_new_option (
- weechat_config_file, ptr_section,
- "nicklist_prefix1", "color",
- N_("text color for prefix #1 in nicklist"),
- NULL, -1, 0, "lightgreen", NULL, 0,
- NULL, NULL, &config_change_color, NULL, NULL, NULL);
- config_color_nicklist_prefix2 = config_file_new_option (
- weechat_config_file, ptr_section,
- "nicklist_prefix2", "color",
- N_("text color for prefix #2 in nicklist"),
- NULL, -1, 0, "lightmagenta", NULL, 0,
- NULL, NULL, &config_change_color, NULL, NULL, NULL);
- config_color_nicklist_prefix3 = config_file_new_option (
- weechat_config_file, ptr_section,
- "nicklist_prefix3", "color",
- N_("text color for prefix #3 in nicklist"),
- NULL, -1, 0, "yellow", NULL, 0,
- NULL, NULL, &config_change_color, NULL, NULL, NULL);
- config_color_nicklist_prefix4 = config_file_new_option (
- weechat_config_file, ptr_section,
- "nicklist_prefix4", "color",
- N_("text color for prefix #4 in nicklist"),
- NULL, -1, 0, "blue", NULL, 0,
- NULL, NULL, &config_change_color, NULL, NULL, NULL);
- config_color_nicklist_prefix5 = config_file_new_option (
- weechat_config_file, ptr_section,
- "nicklist_prefix5", "color",
- N_("text color for prefix #5 in nicklist"),
- NULL, -1, 0, "brown", NULL, 0,
- NULL, NULL, &config_change_color, NULL, NULL, NULL);
/* completion */
ptr_section = config_file_new_section (weechat_config_file, "completion",
diff --git a/src/core/wee-config.h b/src/core/wee-config.h
index f034f1b78..d8b82d91e 100644
--- a/src/core/wee-config.h
+++ b/src/core/wee-config.h
@@ -166,11 +166,6 @@ extern struct t_config_option *config_color_input_actions;
extern struct t_config_option *config_color_nicklist_group;
extern struct t_config_option *config_color_nicklist_away;
extern struct t_config_option *config_color_nicklist_offline;
-extern struct t_config_option *config_color_nicklist_prefix1;
-extern struct t_config_option *config_color_nicklist_prefix2;
-extern struct t_config_option *config_color_nicklist_prefix3;
-extern struct t_config_option *config_color_nicklist_prefix4;
-extern struct t_config_option *config_color_nicklist_prefix5;
extern struct t_config_option *config_completion_default_template;
extern struct t_config_option *config_completion_nick_add_space;