summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-05-17 23:07:05 -0600
committerKarl Williamson <public@khwilliamson.com>2013-05-20 11:01:52 -0600
commit519101418837cf0edacb710b2b38b42dad6e47c1 (patch)
tree9b0983cc298a947f1189bbd35d69d742b71566ca /regexec.c
parentf2e063754de41c901afa81619aeace2fb9d03f9c (diff)
downloadperl-519101418837cf0edacb710b2b38b42dad6e47c1.tar.gz
Expand flags parameter from boolean in _to_fold_latin1
This will be used in future commits to pass more flags.
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 bc38839ec3..4590a817d9 100644
--- a/regexec.c
+++ b/regexec.c
@@ -1252,7 +1252,7 @@ STMT_START { \
len=0; \
} else { \
len = 1; \
- uvc = _to_fold_latin1( (U8) *uc, foldbuf, &foldlen, 1); \
+ uvc = _to_fold_latin1( (U8) *uc, foldbuf, &foldlen, FOLD_FLAGS_FULL); \
skiplen = UNISKIP( uvc ); \
foldlen -= skiplen; \
uscan = foldbuf + skiplen; \