In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/a55b162c2ce28c963bbb5fda32a8aff3855ff15d?hp=74c2567ea04065ba1e35ab395fe543042852be14>

- Log -----------------------------------------------------------------
commit a55b162c2ce28c963bbb5fda32a8aff3855ff15d
Author: Craig A. Berry <[email protected]>
Date:   Thu Oct 15 11:01:33 2009 -0500

    Fix 2 pod errors in perlvms.pod.

M       pod/perlvms.pod

commit 7fa7b0adb97886e2a8e02b65c9e10f9872651150
Author: Craig A. Berry <[email protected]>
Date:   Thu Oct 15 10:59:09 2009 -0500

    Make p_tainted.t find its tests on VMS.
    
    Reported upstream at:
    
    https://rt.cpan.org/Ticket/Display.html?id=50528

M       cpan/List-Util/t/p_tainted.t
-----------------------------------------------------------------------

Summary of changes:
 cpan/List-Util/t/p_tainted.t |    2 +-
 pod/perlvms.pod              |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/cpan/List-Util/t/p_tainted.t b/cpan/List-Util/t/p_tainted.t
index eda5929..6a4cd22 100644
--- a/cpan/List-Util/t/p_tainted.t
+++ b/cpan/List-Util/t/p_tainted.t
@@ -6,7 +6,7 @@ use File::Spec;
 $List::Util::TESTING_PERL_ONLY = $List::Util::TESTING_PERL_ONLY = 1;
 
 (my $f = __FILE__) =~ s/p_//;
-my $filename = $^O eq 'MSWin32'
+my $filename = ($^O eq 'MSWin32' || $^O eq 'VMS')
              ? File::Spec->rel2abs(File::Spec->catfile(".", $f))
              : File::Spec->catfile(".", $f);
 do $filename; die $@ if $@;
diff --git a/pod/perlvms.pod b/pod/perlvms.pod
index 9854ff8..d7ed2bc 100644
--- a/pod/perlvms.pod
+++ b/pod/perlvms.pod
@@ -772,7 +772,7 @@ true, a warning message is printed, and C<undef> is 
returned.
 =item kill
 
 In most cases, C<kill> is implemented via the undocumented system
-service <$SIGPRC>, which has the same calling sequence as <$FORCEX>, but
+service C<$SIGPRC>, which has the same calling sequence as C<$FORCEX>, but
 throws an exception in the target process rather than forcing it to call
 C<$EXIT>.  Generally speaking, C<kill> follows the behavior of the
 CRTL's C<kill()> function, but unlike that function can be called from

--
Perl5 Master Repository

Reply via email to