summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-02-18 07:58:48 -0700
committerKarl Williamson <public@khwilliamson.com>2011-02-19 11:47:41 -0700
commit57014d776818473b5b87e776a8050a60b7547d98 (patch)
tree7da5431921ff9cad928201017cbf91d3f85b37c1 /regexec.c
parent56d853d63a6854db92d028153be6f2aa285a68c6 (diff)
downloadperl-57014d776818473b5b87e776a8050a60b7547d98.tar.gz
regexec.c: Change flag bit from digit to mnemonic
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regexec.c b/regexec.c
index 379a97a2a6..13f7cac1cf 100644
--- a/regexec.c
+++ b/regexec.c
@@ -3652,7 +3652,7 @@ S_regmatch(pTHX_ regmatch_info *reginfo, regnode *prog)
case EXACTFA:
folder = foldEQ_latin1;
fold_array = PL_fold_latin1;
- fold_utf8_flags = 1;
+ fold_utf8_flags = FOLDEQ_UTF8_NOMIX_ASCII;
goto do_exactf;
case EXACTF: