diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-06-15 21:01:18 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-06-15 21:01:18 +0000 |
commit | 9b332a202cf8cca5abe3fcf994d3993e1a7e06c1 (patch) | |
tree | a83a59031fda48a723e8c1ca2e01baaf5e9b2731 /gv.c | |
parent | 38193a09e3d9a4039dcc38f793ceb9482e7346d0 (diff) | |
download | perl-9b332a202cf8cca5abe3fcf994d3993e1a7e06c1.tar.gz |
Rename again the warning about $* being no longer supported
(and update perldiag this time!)
p4raw-id: //depot/perl@19794
Diffstat (limited to 'gv.c')
-rw-r--r-- | gv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -928,7 +928,7 @@ Perl_gv_fetchpv(pTHX_ const char *nambeg, I32 add, I32 sv_type) case '*': if (len == 1 && sv_type == SVt_PV && ckWARN2(WARN_DEPRECATED, WARN_SYNTAX)) Perl_warner(aTHX_ packWARN2(WARN_DEPRECATED, WARN_SYNTAX), - "The variable \"$*\" is no longer supported"); + "$* is no longer supported"); break; case '#': if (len == 1 && sv_type == SVt_PV && ckWARN2(WARN_DEPRECATED, WARN_SYNTAX)) |