mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
/NAMES -count now prints only the "total" line, not "users(#channel)" anymore
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1641 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
fbe38dd2c8
commit
088358ca61
@ -463,10 +463,11 @@ void fe_channels_nicklist(CHANNEL_REC *channel, int flags)
|
|||||||
g_slist_free(nicklist);
|
g_slist_free(nicklist);
|
||||||
|
|
||||||
/* display the nicks */
|
/* display the nicks */
|
||||||
printformat(channel->server, channel->name,
|
if ((flags & CHANNEL_NICKLIST_FLAG_COUNT) == 0) {
|
||||||
MSGLEVEL_CRAP, TXT_NAMES, channel->name, "");
|
printformat(channel->server, channel->name,
|
||||||
if ((flags & CHANNEL_NICKLIST_FLAG_COUNT) == 0)
|
MSGLEVEL_CRAP, TXT_NAMES, channel->name, "");
|
||||||
display_sorted_nicks(channel, sorted);
|
display_sorted_nicks(channel, sorted);
|
||||||
|
}
|
||||||
g_slist_free(sorted);
|
g_slist_free(sorted);
|
||||||
|
|
||||||
printformat(channel->server, channel->name,
|
printformat(channel->server, channel->name,
|
||||||
|
Loading…
Reference in New Issue
Block a user