From: Jarkko Hietaniemi Date: Sun, 9 Sep 2001 13:54:07 +0000 (+0000) Subject: Use the tried method. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=94bb614c5f008cb313aee959fed545d0f9423d41;p=p5sagit%2Fp5-mst-13.2.git Use the tried method. p4raw-id: //depot/perl@11963 --- diff --git a/pod/perlport.pod b/pod/perlport.pod index cb358f6..9abaff6 100644 --- a/pod/perlport.pod +++ b/pod/perlport.pod @@ -366,7 +366,7 @@ remove all the versions because by default the native tools on those platforms remove just the most recent version, too). The portable idiom to remove all the versions of a file is - 1 while unlink "file" or die $!; + 1 while unlink "file"; This will terminate if the file is undeleteable for some reason (protected, not there, and so on).