perlcall: #109408
authorBrian Fraser <fraserbn@gmail.com>
Wed, 1 Feb 2012 02:37:46 +0000 (23:37 -0300)
committerFather Chrysostomos <sprout@cpan.org>
Wed, 27 Jun 2012 15:32:46 +0000 (08:32 -0700)
pod/perlcall.pod

index 4c7ffc9..4794763 100644 (file)
@@ -1031,8 +1031,8 @@ Here is a snippet of XSUB which defines I<CallSubPV>.
        call_pv(name, G_DISCARD|G_NOARGS);
 
 That is fine as far as it goes. The thing is, the Perl subroutine
-can be specified as only a string.  For Perl 4 this was adequate,
-but Perl 5 allows references to subroutines and anonymous subroutines.
+can be specified as only a string, however, Perl allows references
+to subroutines and anonymous subroutines.
 This is where I<call_sv> is useful.
 
 The code below for I<CallSubSV> is identical to I<CallSubPV> except