From: Karl Williamson Date: Wed, 5 May 2010 18:07:42 +0000 (-0600) Subject: perlport: fix 80 col display; broken link X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a61fc69c83c7bd85cd6bd9ac19290441703ac7a3;p=p5sagit%2Fp5-mst-13.2.git perlport: fix 80 col display; broken link --- diff --git a/pod/perlport.pod b/pod/perlport.pod index 6439bf8..19b49c5 100644 --- a/pod/perlport.pod +++ b/pod/perlport.pod @@ -480,17 +480,17 @@ file name. To convert $^X to a file pathname, taking account of the requirements of the various operating system possibilities, say: - use Config; - my $thisperl = $^X; - if ($^O ne 'VMS') - {$thisperl .= $Config{_exe} unless $thisperl =~ m/$Config{_exe}$/i;} + use Config; + my $thisperl = $^X; + if ($^O ne 'VMS') + {$thisperl .= $Config{_exe} unless $thisperl =~ m/$Config{_exe}$/i;} To convert $Config{perlpath} to a file pathname, say: - use Config; - my $thisperl = $Config{perlpath}; - if ($^O ne 'VMS') - {$thisperl .= $Config{_exe} unless $thisperl =~ m/$Config{_exe}$/i;} + use Config; + my $thisperl = $Config{perlpath}; + if ($^O ne 'VMS') + {$thisperl .= $Config{_exe} unless $thisperl =~ m/$Config{_exe}$/i;} =head2 Networking @@ -1089,7 +1089,7 @@ Pumpkings and module integrators can easily see whether files with too many directory levels have snuck into the core by running the following in the top-level source directory: - $ perl -ne "$_=~s/\s+.*//; print if scalar(split /\//) > 8;" < MANIFEST + $ perl -ne "$_=~s/\s+.*//; print if scalar(split /\//) > 8;" < MANIFEST The VMS::Filespec module, which gets installed as part of the build @@ -1801,7 +1801,7 @@ Available on 64 bit OpenVMS 8.2 and later. (VMS) =item localtime -localtime() has the same range as L, but because time zone +localtime() has the same range as L, but because time zone rules change its accuracy for historical and future times may degrade but usually by no more than an hour.