diff options
author | Gisle Aas <gisle@aas.no> | 1998-06-29 14:36:09 +0200 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-30 05:17:33 +0000 |
commit | f1192ceea6b2a126a4ff3254f91c2bc47c361c71 (patch) | |
tree | 2bca20552574a90634d783266fcb9ce8a3d90b2c /pod | |
parent | 25eaa2138d60ea820620e1b1324f90a6b4f4adcd (diff) | |
download | perl-f1192ceea6b2a126a4ff3254f91c2bc47c361c71.tar.gz |
Re: [PATCH] Simplified magic_setisa() and improved fields.pm
Message-Id: <m367hk4hra.fsf@furu.g.aas.no>
p4raw-id: //depot/perl@1266
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldiag.pod | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index b58885609b..841be546a6 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -316,6 +316,11 @@ system malloc(). (P) One of the internal hash routines was passed a null HV pointer. +=item Bad index while coercing array into hash + +(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 name after %s:: (F) You started to name a symbol by using a package prefix, and then didn't @@ -1601,6 +1606,13 @@ your system. (F) The argument to B<-I> must follow the B<-I> immediately with no intervening space. +=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 +does not know about the field name. The field names are looked up in +the %FIELDS hash in the type package at compile time. The %FIELDS hash +is usually set up with the 'fields' pragma. + =item No such pipe open (P) An error peculiar to VMS. The internal routine my_pclose() tried to |