1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-07 10:13:12 +02:00

Remove obsolete option weechat.color.input_nick

This commit is contained in:
Sebastien Helleu
2009-08-09 12:16:30 +02:00
parent 508398f7c5
commit 14966acaf2
4 changed files with 0 additions and 18 deletions
-5
View File
@@ -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
-5
View File
@@ -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
-7
View File
@@ -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",
-1
View File
@@ -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;