fixed the syntax error
authorminima <minima>
Fri, 27 Oct 2000 22:35:14 +0000 (22:35 +0000)
committerminima <minima>
Fri, 27 Oct 2000 22:35:14 +0000 (22:35 +0000)
perl/DXMsg.pm

index 2de6a22ad7cdf220b567212e24800071fa88ca51..800fb5e74b26ce25ee86c1f24b20d006e4e6b31d 100644 (file)
@@ -458,7 +458,7 @@ sub del_msg
        my $self = shift;
        
        # remove it from the active message list
-       @msg = grep { $ref($_) && $_ != $self } @msg;
+       @msg = grep { ref($_) && $_ != $self } @msg;
        
        # belt and braces (one day I will ask someone if this is REALLY necessary)
        delete $self->{gotit};