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

Added support of channel mode +u (channel user) (bug #20717)

This commit is contained in:
Sebastien Helleu
2007-08-09 09:35:17 +00:00
parent c246d44762
commit ec78674d4e
44 changed files with 4392 additions and 4240 deletions
+1 -1
View File
@@ -1165,7 +1165,7 @@ session_load_nick (FILE *file)
/* allocate nick */
nick = irc_nick_new (session_current_server, session_current_channel,
nick_name, 0, 0, 0, 0, 0, 0);
nick_name, 0, 0, 0, 0, 0, 0, 0);
free (nick_name);
if (!nick)
{
+5
View File
@@ -341,6 +341,7 @@ int cfg_col_nick_chanadmin;
int cfg_col_nick_op;
int cfg_col_nick_halfop;
int cfg_col_nick_voice;
int cfg_col_nick_user;
int cfg_col_nick_more;
int cfg_col_nick_sep;
int cfg_col_nick_self;
@@ -563,6 +564,10 @@ t_config_option weechat_options_colors[] =
N_("color for voice symbol"),
OPTION_TYPE_COLOR, 0, 0, 0,
"yellow", NULL, &cfg_col_nick_voice, NULL, &config_change_color },
{ "col_nick_user", N_("color for user symbol"),
N_("color for user symbol"),
OPTION_TYPE_COLOR, 0, 0, 0,
"blue", NULL, &cfg_col_nick_user, NULL, &config_change_color },
{ "col_nick_more", N_("color for '+' when scrolling nicks"),
N_("color for '+' when scrolling nicks"),
OPTION_TYPE_COLOR, 0, 0, 0,
+1
View File
@@ -183,6 +183,7 @@ extern int cfg_col_nick_chanadmin;
extern int cfg_col_nick_op;
extern int cfg_col_nick_halfop;
extern int cfg_col_nick_voice;
extern int cfg_col_nick_user;
extern int cfg_col_nick_more;
extern int cfg_col_nick_sep;
extern int cfg_col_nick_self;