On Thursday 18 October 2007 08:57:51 [EMAIL PROTECTED] wrote: > +ok( !scalar(@multi_dots), 'No multi-dot filenames' ) > + or diag( "Multi-dot filename found in " . scalar @multi_dots > + . " files:[EMAIL PROTECTED]" );
Both instances of scalar() are redundant here. The bang operator enforces scalar context, as does the dot. They don't hurt anything, but they don't add anything. -- c