1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-08 04:26:01 -04:00

Add commas between splitted nicks. patch by Qrczak

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2312 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-01-12 12:47:12 +00:00 committed by cras
parent e6bf76ed11
commit 757be11fff

View File

@ -132,7 +132,7 @@ static void get_server_splits(void *key, NETSPLIT_REC *split,
chanrec->nick_count <= netsplit_nicks_hide_threshold) { chanrec->nick_count <= netsplit_nicks_hide_threshold) {
if (splitchan->op) if (splitchan->op)
g_string_append_c(chanrec->nicks, '@'); g_string_append_c(chanrec->nicks, '@');
g_string_sprintfa(chanrec->nicks, "%s ", split->nick); g_string_sprintfa(chanrec->nicks, "%s, ", split->nick);
if (chanrec->nick_count == netsplit_max_nicks) if (chanrec->nick_count == netsplit_max_nicks)
chanrec->maxnickpos = chanrec->nicks->len; chanrec->maxnickpos = chanrec->nicks->len;
@ -166,7 +166,7 @@ static void print_server_splits(IRC_SERVER_REC *server, TEMP_SPLIT_REC *rec)
for (tmp = rec->channels; tmp != NULL; tmp = tmp->next) { for (tmp = rec->channels; tmp != NULL; tmp = tmp->next) {
TEMP_SPLIT_CHAN_REC *chan = tmp->data; TEMP_SPLIT_CHAN_REC *chan = tmp->data;
g_string_truncate(chan->nicks, chan->nicks->len-1); g_string_truncate(chan->nicks, chan->nicks->len-2);
if (netsplit_max_nicks > 0 && if (netsplit_max_nicks > 0 &&
chan->nick_count > netsplit_max_nicks) { chan->nick_count > netsplit_max_nicks) {