summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-07-04 02:38:34 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-07-04 02:38:34 +0000
commitf10b034643f35a8ac5fe5ed0513218d385884cbb (patch)
tree573efda8d4fcb6b22f81988b692538e7f9b02718 /op.c
parent2d63fa086243e29dbf185b28986d9a77e353a33c (diff)
downloadperl-f10b034643f35a8ac5fe5ed0513218d385884cbb.tar.gz
remove misleading info on defined(&func), unclutter deprecation
about defined(@array) p4raw-id: //depot/perl@3567
Diffstat (limited to 'op.c')
-rw-r--r--op.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/op.c b/op.c
index 3d07000125..f0cd15f433 100644
--- a/op.c
+++ b/op.c
@@ -4999,14 +4999,14 @@ Perl_ck_defined(pTHX_ OP *o) /* 19990527 MJD */
case OP_PADAV:
case OP_AASSIGN: /* Is this a good idea? */
Perl_warner(aTHX_ WARN_DEPRECATED,
- "defined(@array) is deprecated (and not really meaningful)");
+ "defined(@array) is deprecated");
Perl_warner(aTHX_ WARN_DEPRECATED,
"(Maybe you should just omit the defined()?)\n");
break;
case OP_RV2HV:
case OP_PADHV:
Perl_warner(aTHX_ WARN_DEPRECATED,
- "defined(%hash) is deprecated (and not really meaningful)");
+ "defined(%hash) is deprecated");
Perl_warner(aTHX_ WARN_DEPRECATED,
"(Maybe you should just omit the defined()?)\n");
break;