diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-12-20 22:38:53 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-12-20 22:38:53 +0100 |
commit | 29e9f6fc0007eb3d3a2204ef8f93ec3d58645d81 (patch) | |
tree | 50deb7d44e578298aad8c0884372ade08f5afc66 /toke.c | |
parent | 9889e3de1462a5f5e211eb6898ded8780ab669e5 (diff) | |
download | perl-29e9f6fc0007eb3d3a2204ef8f93ec3d58645d81.tar.gz |
Remove spurious case of warning "Use of %s without parentheses is ambiguous"
Eric Brine pointed out that this warning doesn't apply to ".",
as in C<rand . 1>, that shouldn't warn since C<. 1> cannot be
mistaken for a floating point number.
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -5642,8 +5642,6 @@ Perl_yylex(pTHX) pl_yylval.ival = 0; OPERATOR(DOTDOT); } - if (PL_expect != XOPERATOR) - check_uni(); Aop(OP_CONCAT); } /* FALL THROUGH */ |