summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-01-30 13:20:53 -0700
committerKarl Williamson <khw@cpan.org>2020-01-30 14:39:33 -0700
commita9256a759f019bfe406cbec545551af6b3c12fda (patch)
treec7d3e80bca1738bcea68f88275eed8f8cb6c93d1 /regexec.c
parent2c490b6a8a421e7f28e9d2a16712c1ce9578b65e (diff)
downloadperl-a9256a759f019bfe406cbec545551af6b3c12fda.tar.gz
Change Unicode property abbrev to upcoming official
Unicode 12.0 used a new property file that was not from the Unicode Character Database. It only had a long property name. I incorporated it into our data, and rather than use the very long name all the time, I created my own short name, since there was no official one. Now, the upcoming 13.0 has moved the file to the UCD, and come up with a short name that differs from the one I had. This commit converts to use Unicode's name. This property is not exposed to user or XS space, so there is no user impact.
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 2ff6bb34d4..59e8fddfa6 100644
--- a/regexec.c
+++ b/regexec.c
@@ -4588,7 +4588,7 @@ S_isGCB(pTHX_ const GCB_enum before, const GCB_enum after, const U8 * const strb
}
while (prev == GCB_Extend);
- return prev != GCB_XPG_XX;
+ return prev != GCB_ExtPict_XX;
}
default: