in reply to Re^4: Script replaces instead of add
in thread Script replaces instead of add
It probably was supposed to remove those messages, which later would be overwritten anyway, so it was superfluous from the very beginning...my %hash = map { $_, 1 } @nicks; @nicks = keys %hash; if (keys %delaylist) { my @isect = (); map { $hash{$_} = 1 } keys %delaylist; @isect = grep { $hash{$_} } @nicks; if (@isect) { # removedelays(@isect); } }
|
|---|