p4raw-id: //depot/perl@3305
(W) An undefined value was used as if it were already defined. It was
interpreted as a "" or a 0, but maybe it was a mistake. To suppress this
-warning assign an initial value to your variables.
+warning assign a defined value to your variables.
=item Useless use of "re" pragma
use Config;
$Running_Threaded = 0;
- BEGIN { $Running_Threaded = $Config{'usethreaded'} }
+ BEGIN { $Running_Threaded = $Config{'usethreads'} }
sub sub1 { lock(\&sub1) if $Running_Threaded }
$tmp = "$ENV{TEMP}\\perldoc1.$$";
push @pagers, qw( more< less notepad );
unshift @pagers, $ENV{PAGER} if $ENV{PAGER};
+ for (@found) { s,/,\\,g }
} elsif ($Is_VMS) {
$tmp = 'Sys$Scratch:perldoc.tmp1_'.$$;
push @pagers, qw( most more less type/page );