summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorMichael G. Schwern <schwern@pobox.com>1999-10-03 09:54:23 -0400
committerJarkko Hietaniemi <jhi@iki.fi>1999-10-03 17:50:59 +0000
commit88e9b055d1d2b36d019a3b541f111de4d9b71e3e (patch)
treebb12c08e6d07189374337e1c6ed163a2c8871ef9 /op.c
parentab612ae322acd4d9f3012a98d8fef7a541ccdeca (diff)
downloadperl-88e9b055d1d2b36d019a3b541f111de4d9b71e3e.tar.gz
A better version of #4296.
To: perl5-porters@perl.org Subject: [PATCH av.c, op.c, perldiag.pod] "array field" -> "pseudo-hash field" Message-ID: <19991003135423.A3050@blackrider> p4raw-id: //depot/cfgperl@4297
Diffstat (limited to 'op.c')
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index 40f4e36d37..c0abbf82cd 100644
--- a/op.c
+++ b/op.c
@@ -6141,7 +6141,7 @@ Perl_peep(pTHX_ register OP *o)
key = SvPV(*svp, keylen);
indsvp = hv_fetch(GvHV(*fields), key, keylen, FALSE);
if (!indsvp) {
- Perl_croak(aTHX_ "No such field \"%s\" in variable %s of type %s",
+ Perl_croak(aTHX_ "No such pseudo-hash field \"%s\" in variable %s of type %s",
key, SvPV(lexname, n_a), HvNAME(SvSTASH(lexname)));
}
ind = SvIV(*indsvp);