diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-06 16:07:03 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-06 16:07:03 +0000 |
commit | 2393f1b901d4e694bd945211b6a0392db1b3cf57 (patch) | |
tree | a4e70557d6703ed1aed4c47201fe5b61a9232c93 /pod | |
parent | 19692e8d256164f96817d6df6ecee26c3cda4ae9 (diff) | |
download | perl-2393f1b901d4e694bd945211b6a0392db1b3cf57.tar.gz |
Make hv_notallowed a static as suggested by Nicholas Clark;
and synchronize the nomenclature to talk about restricted
(not fixed) hashes.
p4raw-id: //depot/perl@15758
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldiag.pod | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 6bcd87a46e..f22aa80f75 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -1,4 +1,3 @@ -//depot/perl/pod/perldiag.pod#272 - edit change 14824 (text) =head1 NAME perldiag - various Perl diagnostics @@ -183,26 +182,26 @@ spots. This is now heavily deprecated. must either both be scalars or both be lists. Otherwise Perl won't know which context to supply to the right side. -=item Attempt to access disallowed key '%s' in a fixed hash +=item Attempt to access disallowed key '%s' in a restricted hash (F) The failing code has attempted to get or set a key which is not in -the current set of allowed keys of a fixed hash. +the current set of allowed keys of a restricted hash. -=item Attempt to clear a fixed hash +=item Attempt to clear a restricted hash -(F) It is currently not allowed to clear a fixed hash, even if the +(F) It is currently not allowed to clear a restricted hash, even if the new hash would contain the same keys as before. This may change in the future. -=item Attempt to delete readonly key '%s' from a fixed hash +=item Attempt to delete readonly key '%s' from a restricted hash (F) The failing code attempted to delete a key whose value has been -declared readonly from a fixed hash. +declared readonly from a restricted hash. -=item Attempt to delete disallowed key '%s' from a fixed hash +=item Attempt to delete disallowed key '%s' from a restricted hash -(F) The failing code attempted to delete from a fixed hash a key which -is not in its key set. +(F) The failing code attempted to delete from a restricted hash a key +which is not in its key set. =item Attempt to bless into a reference |