Remove useless uses of replace_chars.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4781 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2008-03-28 18:30:26 +00:00 committed by exg
commit cd9e7e110a
2 changed files with 2 additions and 2 deletions

View file

@ -152,7 +152,7 @@ static void cmd_ignore(const char *data)
mask = NULL;
}
channels = (chanarg == NULL || *chanarg == '\0') ? NULL :
g_strsplit(replace_chars(chanarg, ',', ' '), " ", -1);
g_strsplit(chanarg, ",", -1);
rec = patternarg != NULL ? NULL: ignore_find(NULL, mask, channels);
new_ignore = rec == NULL;