diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-02-14 13:23:33 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-02-14 16:19:07 -0800 |
commit | c2771421ee5b32bcb9f4a23b2874adf23f41627f (patch) | |
tree | 5d23f1efce7b8a0a75e5f36ebcfb4681c3f56e1b /pod/perldiag.pod | |
parent | a6d65a937c4537ac27f0789d797e081326e9fbd0 (diff) | |
download | perl-c2771421ee5b32bcb9f4a23b2874adf23f41627f.tar.gz |
perldiag: more sorting
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r-- | pod/perldiag.pod | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 777130835e..5e2d0a1c36 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -4449,16 +4449,16 @@ know about your kind of stdio. You'll have to use a filename instead. (F) You tried to use C<goto> to reach a label that was too deeply nested for Perl to reach. Perl is doing you a favor by refusing. -=item tell() on unopened filehandle - -(W unopened) You tried to use the tell() function on a filehandle that -was either never opened or has since been closed. - =item telldir() attempted on invalid dirhandle %s (W io) The dirhandle you tried to telldir() is either closed or not really a dirhandle. Check your control flow. +=item tell() on unopened filehandle + +(W unopened) You tried to use the tell() function on a filehandle that +was either never opened or has since been closed. + =item That use of $[ is unsupported (F) Assignment to C<$[> is now strictly circumscribed, and interpreted @@ -4764,14 +4764,6 @@ of the C<-C> switch for the list of known options. (F) You specified an unknown Unicode option. See L<perlrun> documentation of the C<-C> switch for the list of known options. -=item Unknown warnings category '%s' - -(F) An error issued by the C<warnings> pragma. You specified a warnings -category that is unknown to perl at this point. - -Note that if you want to enable a warnings category registered by a module -(e.g. C<use warnings 'File::Find'>), you must have imported this module - =item Unknown verb pattern '%s' in regex; marked by <-- HERE in m/%s/ (F) You either made a typo or have incorrectly put a C<*> quantifier @@ -4780,6 +4772,14 @@ L<perlre> for details on legal verb patterns. first. +=item Unknown warnings category '%s' + +(F) An error issued by the C<warnings> pragma. You specified a warnings +category that is unknown to perl at this point. + +Note that if you want to enable a warnings category registered by a module +(e.g. C<use warnings 'File::Find'>), you must have imported this module + =item unmatched [ in regex; marked by <-- HERE in m/%s/ (F) The brackets around a character class must match. If you wish to |