diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-12 18:06:49 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-12 18:06:49 +0000 |
commit | 61a36c016d02518f6bc19ca7f7d1b5a51cc47d49 (patch) | |
tree | 9a6389564428b888e502d8aea0ff37f234ce2a5e /regexec.c | |
parent | 141d3726fc72209aa58460ec315973400348d8f5 (diff) | |
download | perl-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 'regexec.c')
-rw-r--r-- | regexec.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1554,9 +1554,7 @@ Perl_regexec_flags(pTHX_ register regexp *prog, char *stringarg, register char * } minlen = prog->minlen; - if (strend - startpos < minlen && - !PL_reg_match_utf8 /* ANYOFs can balloon to EXACTFs */ - ) { + if (strend - startpos < minlen) { DEBUG_r(PerlIO_printf(Perl_debug_log, "String too short [regexec_flags]...\n")); goto phooey; |