summaryrefslogtreecommitdiff
path: root/pp_hot.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-01-12 18:06:49 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-01-12 18:06:49 +0000
commit61a36c016d02518f6bc19ca7f7d1b5a51cc47d49 (patch)
tree9a6389564428b888e502d8aea0ff37f234ce2a5e /pp_hot.c
parent141d3726fc72209aa58460ec315973400348d8f5 (diff)
downloadperl-61a36c016d02518f6bc19ca7f7d1b5a51cc47d49.tar.gz
Special treatment for U+03B0 and U+0390 in //i,
this means that we can remove the minlen pessimisations introduced by the #14096. p4raw-id: //depot/perl@14219
Diffstat (limited to 'pp_hot.c')
-rw-r--r--pp_hot.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/pp_hot.c b/pp_hot.c
index df52bb19f9..b759153270 100644
--- a/pp_hot.c
+++ b/pp_hot.c
@@ -1235,9 +1235,7 @@ PP(pp_match)
pm = PL_curpm;
rx = PM_GETRE(pm);
}
- if (rx->minlen > len &&
- !PL_reg_match_utf8 /* ANYOFs can balloon to EXACTFs */
- )
+ if (rx->minlen > len)
goto failure;
truebase = t = s;