diff options
author | Bram <perl-rt@wizbit.be> | 2008-05-16 21:14:11 -0700 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-05-18 07:55:44 +0000 |
commit | b0fdf69ec50f40b936b80fb258d82bfc8e867346 (patch) | |
tree | ac83663eada93ec44019580cb6c2b0cac2bf9590 /op.c | |
parent | 5f1da31cc3010163aa29135d0c83706ab31118b8 (diff) | |
download | perl-b0fdf69ec50f40b936b80fb258d82bfc8e867346.tar.gz |
[perl #38955] exists(): error message on wrong argument type is incorrect (5.8.7 cygwin)
From: "Bram via RT" <perlbug-followup@perl.org>
Message-ID: <rt-3.6.HEAD-11257-1211022849-1634.38955-15-0@perl.org>
p4raw-id: //depot/perl@33849
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6556,7 +6556,7 @@ Perl_ck_exists(pTHX_ OP *o) else if (kid->op_type == OP_AELEM) o->op_flags |= OPf_SPECIAL; else if (kid->op_type != OP_HELEM) - Perl_croak(aTHX_ "%s argument is not a HASH or ARRAY element", + Perl_croak(aTHX_ "%s argument is not a HASH or ARRAY element or a subroutine", OP_DESC(o)); op_null(kid); } |