diff options
author | Gisle Aas <gisle@aas.no> | 1998-06-30 15:34:07 +0200 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-04 02:53:26 +0000 |
commit | 57079c468e190b483eeed1dc905fcaa88d70475e (patch) | |
tree | 142f286d1dd853167dbad2277eb85f422a634489 /pod/perldiag.pod | |
parent | 0a528a3542746230f4fc096636f17a8e901151fc (diff) | |
download | perl-57079c468e190b483eeed1dc905fcaa88d70475e.tar.gz |
applied patch with tweaks to prose
Subject: [PATCH] Simplified AVHV support
Message-ID: <m3k95z86og.fsf@furu.g.aas.no>
p4raw-id: //depot/perl@1286
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r-- | pod/perldiag.pod | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 468e0a341f..3851bacfd0 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -321,6 +321,11 @@ system malloc(). (F) A field name of a typed variable was looked up in the %FIELDS hash, but the index found was not legal, i.e. less than 1. +=item Bad index while coercing array into hash + +(F) The index looked up in the hash found as 0'th element of the array +is not legal. Index values must be at 1 or greater. + =item Bad name after %s:: (F) You started to name a symbol by using a package prefix, and then didn't @@ -497,6 +502,12 @@ but then $foo no longer contains a glob. (F) Certain types of SVs, in particular real symbol table entries (typeglobs), can't be forced to stop being what they are. +=item Can't coerce array into hash + +(F) You used an array where a hash was expected, but the array has no +information on how to map from keys to array indices. You can do that +only with arrays that have a hash reference at index 0. + =item Can't create pipe mailbox (P) An error peculiar to VMS. The process is suffering from exhausted quotas @@ -1606,6 +1617,12 @@ your system. (F) The argument to B<-I> must follow the B<-I> immediately with no intervening space. +=item No such array field + +(F) You tried to access an array as a hash, but the field name used is +not defined. The hash at index 0 should map all valid field names to +array indices for that to work. + =item No such field "%s" in variable %s of type %s (F) You tried to access a field of a typed variable where the type |