(and update perldiag this time!)
p4raw-id: //depot/perl@19794
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))
to have existed already, but for some reason it didn't, and had to be
created on an emergency basis to prevent a core dump.
-=item $* has been removed
+=item $* is no longer supported
(D deprecated) The special variable C<$*>, deprecated in older perls, has
been removed as of 5.9.0 and is no longer supported. You should use the
fred() ;
Use of $# is deprecated
- $* has been removed
+ $* is no longer supported
$a = ${"#"} ;
$a = ${"*"} ;
$a = ${"*"};
EXPECT
Use of $# is deprecated at - line 3.
-The variable "$*" is no longer supported at - line 4.
+$* is no longer supported at - line 4.