diff options
author | Rick Delaney <rick@consumercontact.com> | 2007-09-22 12:30:40 -0400 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-09-25 11:41:50 +0000 |
commit | 087b5369f6d9d58850930f241538fb771b1fb1ec (patch) | |
tree | 6a364d7b33ef42c1e509af0fc5a79283d6cc7189 /pod/perldiag.pod | |
parent | 9cf14a5ab4f672ed6d205674d471c54099e9240c (diff) | |
download | perl-087b5369f6d9d58850930f241538fb771b1fb1ec.tar.gz |
Re: [PATCH 5.10] Improve diagnostic for reloads of bad modules
Message-ID: <20070922203040.GK11931@bort.ca>
p4raw-id: //depot/perl@31965
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r-- | pod/perldiag.pod | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 9123a01267..1d2650fdc1 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -282,6 +282,13 @@ invalid anytime, even before the end of the current statement. Use literals or global values as arguments to the "p" pack() template to avoid this warning. +=item Attempt to reload %s aborted. + +(F) You tried to load a file with C<use> or C<require> that failed to +compile once already. Perl will not try to compile this file again +unless you delete its entry from %INC. See L<perlfunc/require> and +L<perlvar/%INC>. + =item Attempt to set length of freed array (W) You tried to set the length of an array which has been freed. You |