diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-10-08 22:23:50 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-10-09 23:14:07 -0700 |
commit | 89fc9e2a93d8f1efaca9c57135763a5342ecdd36 (patch) | |
tree | 612732e86d7d1ba8b5b5cef07f338d4e5aea8c4c /pod/perlsub.pod | |
parent | b2ef759e149da82c9e8229884417d223e485c9fb (diff) | |
download | perl-89fc9e2a93d8f1efaca9c57135763a5342ecdd36.tar.gz |
Update docs for XS AUTOLOAD
This mentions the UTF8 flag and moves the discussion to perlapi, where
it belongs, IMHO.
Diffstat (limited to 'pod/perlsub.pod')
-rw-r--r-- | pod/perlsub.pod | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pod/perlsub.pod b/pod/perlsub.pod index 35d34f2eb2..6d034f171f 100644 --- a/pod/perlsub.pod +++ b/pod/perlsub.pod @@ -1433,8 +1433,7 @@ is not passed as an ordinary argument because, er, well, just because, that's why. (As an exception, a method call to a nonexistent C<import> or C<unimport> method is just skipped instead. Also, if the AUTOLOAD subroutine is an XSUB, C<$AUTOLOAD> is not populated; -instead, you should call L<< C<SvPVX>E<sol>C<SvCUR>|perlapi >> on the -C<CV> for C<AUTOLOAD> to retrieve the method name.) +see L<perlapi/SvPVX> for details.) Many C<AUTOLOAD> routines load in a definition for the requested |