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 | |
parent | 508398f7c596f650b7cab4691da1a4ba934c85eb (diff) | |
download | weechat-14966acaf26d4dfa1b5ab5acdf3478967a39e748.zip |
Remove obsolete option weechat.color.input_nick
-rw-r--r-- | doc/en/autogen/user/weechat_options.txt | 5 | ||||
-rw-r--r-- | doc/fr/autogen/user/weechat_options.txt | 5 | ||||
-rw-r--r-- | src/core/wee-config.c | 7 | ||||
-rw-r--r-- | src/core/wee-config.h | 1 |
4 files changed, 0 insertions, 18 deletions
diff --git a/doc/en/autogen/user/weechat_options.txt b/doc/en/autogen/user/weechat_options.txt index f5914f9be..6a66123fa 100644 --- a/doc/en/autogen/user/weechat_options.txt +++ b/doc/en/autogen/user/weechat_options.txt @@ -193,11 +193,6 @@ ** type: color ** values: a color name (default value: lightgreen) -* *weechat.color.input_nick* -** description: text color for nick name in input line -** type: color -** values: a color name (default value: lightcyan) - * *weechat.color.input_text_not_found* ** description: text color for unsucessful text search in input line ** type: color diff --git a/doc/fr/autogen/user/weechat_options.txt b/doc/fr/autogen/user/weechat_options.txt index fd49b9d0f..f4240366f 100644 --- a/doc/fr/autogen/user/weechat_options.txt +++ b/doc/fr/autogen/user/weechat_options.txt @@ -193,11 +193,6 @@ ** type: couleur ** valeurs: un nom de couleur (valeur par défaut: lightgreen) -* *weechat.color.input_nick* -** description: couleur du texte pour le pseudo dans la ligne de saisie -** type: couleur -** valeurs: un nom de couleur (valeur par défaut: lightcyan) - * *weechat.color.input_text_not_found* ** description: couleur du texte pour la recherche infructueuse de texte dans la ligne de saisie ** type: couleur 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; |