summaryrefslogtreecommitdiff
path: root/MANIFEST
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2022-12-30 14:04:06 +0100
committerYves Orton <demerphq@gmail.com>2023-01-06 09:44:13 +0100
commit597582e98eebaaeaf032914996a1ba715eb70a69 (patch)
treeb7c8b096c788dbea04334aeb8c258dd626d1b817 /MANIFEST
parent7e9589875d7c5ac08cf89cb965aff01d3195cf3b (diff)
downloadperl-597582e98eebaaeaf032914996a1ba715eb70a69.tar.gz
regcomp.c - in regdupe_internal() set up "in program" stclass properly
We were only handling "synthetic start classes", not ones that are in the program itself, because those dont have an entry in the data array. So after copying the program after ruling out that the regstclass is synthetic we can assume that if its non-null it points into the program itself, and simply set it up the copy accordingly. Fixes https://github.com/Perl/perl5/issues/9373
Diffstat (limited to 'MANIFEST')
-rw-r--r--MANIFEST1
1 files changed, 1 insertions, 0 deletions
diff --git a/MANIFEST b/MANIFEST
index 5a329b6ee5..fc7ad7d12c 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -6216,6 +6216,7 @@ t/re/rxcode.t See if /(?{ code })/ works
t/re/script_run.t See if script runs works
t/re/speed.t See if optimisations are keeping things fast
t/re/speed_thr.t ditto under threads
+t/re/stclass_threads.t Test if stclass is preserved across threads
t/re/subst.t See if substitution works
t/re/subst_amp.t See if $&-related substitution works
t/re/subst_wamp.t See if substitution works with $& present