diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-03-22 10:49:11 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-03-22 10:49:11 +0100 |
commit | da4438b9957dc1bd1e4a55f3298d97a9479dce7f (patch) | |
tree | 14a53e4a2984fe267d3e60fb558ce008cbae8c69 | |
parent | 1c5ef4d1e3c103262aa98726a64e8e2e780930f8 (diff) | |
download | weechat-da4438b9957dc1bd1e4a55f3298d97a9479dce7f.zip |
Remove obsolete option weechat.color.nicklist_more
-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 02fbe1a33..71702df89 100644 --- a/src/core/wee-config.c +++ b/src/core/wee-config.c @@ -155,7 +155,6 @@ 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; -struct t_config_option *config_color_nicklist_more; /* config, completion section */ @@ -1813,12 +1812,6 @@ config_weechat_init_options () N_("text color for prefix #5 in nicklist"), NULL, -1, 0, "brown", NULL, 0, NULL, NULL, &config_change_color, NULL, NULL, NULL); - config_color_nicklist_more = config_file_new_option ( - weechat_config_file, ptr_section, - "nicklist_more", "color", - N_("text color for '+' when scrolling nicks in nicklist"), - NULL, -1, 0, "lightmagenta", 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 398de7c77..3d3aa0fb5 100644 --- a/src/core/wee-config.h +++ b/src/core/wee-config.h @@ -168,7 +168,6 @@ 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_color_nicklist_more; extern struct t_config_option *config_completion_default_template; extern struct t_config_option *config_completion_nick_add_space; |