diff options
author | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2004-03-09 19:09:20 +0000 |
---|---|---|
committer | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2004-03-09 19:09:20 +0000 |
commit | a8819417e80aa9d32c750ac973516c321adba4cd (patch) | |
tree | f65045b91f66c2f8d7e40073c08e498a3e0d2510 /pp_ctl.c | |
parent | 6b75d741eabd2f8d29b97270b6ce80b236b12a26 (diff) | |
download | perl-a8819417e80aa9d32c750ac973516c321adba4cd.tar.gz |
Revert change #22472, but keep the new tests.
p4raw-link: @22472 on //depot/perl: 6b75d741eabd2f8d29b97270b6ce80b236b12a26
p4raw-id: //depot/perl@22473
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -1056,7 +1056,6 @@ PP(pp_flip) an exception for .."0" [#18165]). AMS 20021031. */ #define RANGE_IS_NUMERIC(left,right) ( \ - (!SvOK(left) && !SvOK(right)) || \ SvNIOKp(left) || (SvOK(left) && !SvPOKp(left)) || \ SvNIOKp(right) || (SvOK(right) && !SvPOKp(right)) || \ (((!SvOK(left) && SvOK(right)) || (looks_like_number(left) && \ |