mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
/set autocreate_query -> /set autocreate_query_level
fixes to /ircnet, /server and /channel commands other updates and fixes git-svn-id: http://svn.irssi.org/repos/irssi/trunk@649 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
008ec45db2
commit
2d1ac3059a
24 changed files with 347 additions and 272 deletions
|
|
@ -39,6 +39,9 @@ static void cmd_ircnet_list(void)
|
|||
for (tmp = chatnets; tmp != NULL; tmp = tmp->next) {
|
||||
IRC_CHATNET_REC *rec = tmp->data;
|
||||
|
||||
if (!IS_IRCNET(rec))
|
||||
continue;
|
||||
|
||||
g_string_truncate(str, 0);
|
||||
if (rec->nick != NULL)
|
||||
g_string_sprintfa(str, "nick: %s, ", rec->nick);
|
||||
|
|
@ -152,7 +155,7 @@ static void cmd_ircnet_remove(const char *data)
|
|||
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, IRCTXT_IRCNET_NOT_FOUND, data);
|
||||
else {
|
||||
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, IRCTXT_IRCNET_REMOVED, data);
|
||||
chatnet_destroy(CHATNET(rec));
|
||||
chatnet_remove(CHATNET(rec));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue