summaryrefslogtreecommitdiff
path: root/MANIFEST
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-07-07 23:39:07 -0700
committerFather Chrysostomos <sprout@cpan.org>2012-07-08 00:24:11 -0700
commitc220e1a11e00efe060ea99925553cb1e03e3363a (patch)
tree09183cee50c75b20540fa4fad54eb5260aab0419 /MANIFEST
parent12f98b43fb8a44e8dfde5d99489b6a599bb91908 (diff)
downloadperl-c220e1a11e00efe060ea99925553cb1e03e3363a.tar.gz
Correct err msg when calling stub w/no autoload fb
If an AUTOLOAD subroutine loads a sub by assigning to the glob, there may be code elsewhere that has a reference to a stub, that is now assigned over. To cope with this situation, calls to undefined sub- routines will fall back to whatever sub is in the subroutine’s owner typeglob. This has been the case since Perl 5.000. But the error message that occurs if the typeglob happens to have no sub in it is wrong: $ perl -e ' my $foosub = \&foo; undef *foo; &$foosub; ' Not a CODE reference at -e line 4. as opposed to this: $ perl -e ' my $foosub = \&foo; &$foosub; ' Undefined subroutine &main::foo called at -e line 3. They should both produce the same error message, because $foosub is a code reference, albeit without a body.
Diffstat (limited to 'MANIFEST')
-rw-r--r--MANIFEST1
1 files changed, 1 insertions, 0 deletions
diff --git a/MANIFEST b/MANIFEST
index 7a5d0c072c..1396660928 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -5034,6 +5034,7 @@ t/lib/compmod.pl Helper for 1_compile.t
t/lib/croak/mg Test croak calls from mg.c
t/lib/croak/op Test croak calls from op.c
t/lib/croak/pp_ctl Test croak calls from pp_ctl.c
+t/lib/croak/pp_hot Test croak calls from pp_hot.c
t/lib/croak.t Test calls to Perl_croak() in the C source.
t/lib/croak/toke Test croak calls from toke.c
t/lib/cygwin.t Builtin cygwin function tests