diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-08-09 12:16:30 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-08-09 12:16:30 +0200 |
commit | 14966acaf26d4dfa1b5ab5acdf3478967a39e748 (patch) | |
tree | 92a49a8e3266d1756627d5e3d6ad560a50fcab85 /src | |
parent | 508398f7c596f650b7cab4691da1a4ba934c85eb (diff) | |
download | weechat-14966acaf26d4dfa1b5ab5acdf3478967a39e748.zip |
Remove obsolete option weechat.color.input_nick
Diffstat (limited to 'src')
-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 46cf00693..89ea50291 100644 --- a/src/core/wee-config.c +++ b/src/core/wee-config.c @@ -138,7 +138,6 @@ struct t_config_option *config_color_status_data_private; struct t_config_option *config_color_status_data_highlight; struct t_config_option *config_color_status_data_other; struct t_config_option *config_color_status_more; -struct t_config_option *config_color_input_nick; struct t_config_option *config_color_input_text_not_found; struct t_config_option *config_color_input_actions; struct t_config_option *config_color_nicklist_group; @@ -1722,12 +1721,6 @@ config_weechat_init_options () NULL, -1, 0, "yellow", NULL, 0, NULL, NULL, &config_change_color, NULL, NULL, NULL); /* input window */ - config_color_input_nick = config_file_new_option ( - weechat_config_file, ptr_section, - "input_nick", "color", - N_("text color for nick name in input line"), - NULL, -1, 0, "lightcyan", NULL, 0, - NULL, NULL, &config_change_color, NULL, NULL, NULL); config_color_input_text_not_found = config_file_new_option ( weechat_config_file, ptr_section, "input_text_not_found", "color", diff --git a/src/core/wee-config.h b/src/core/wee-config.h index 0908e68e1..b0f14f99b 100644 --- a/src/core/wee-config.h +++ b/src/core/wee-config.h @@ -151,7 +151,6 @@ extern struct t_config_option *config_color_status_data_private; extern struct t_config_option *config_color_status_data_highlight; extern struct t_config_option *config_color_status_data_other; extern struct t_config_option *config_color_status_more; -extern struct t_config_option *config_color_input_nick; extern struct t_config_option *config_color_input_text_not_found; extern struct t_config_option *config_color_input_actions; extern struct t_config_option *config_color_nicklist_group; |