Add perl 5.15.7

This commit is contained in:
Samuel Tyler 2025-08-21 22:06:52 +10:00
parent 8318056879
commit 1b6d89f9b4
8 changed files with 179 additions and 0 deletions

View file

@ -0,0 +1,13 @@
diff --git perl-5.15.7/regen/mk_PL_charclass.pl perl-5.15.7/regen/mk_PL_charclass.pl
index a2f837fefc..f777ffe74d 100644
--- perl-5.15.7/regen/mk_PL_charclass.pl
+++ perl-5.15.7/regen/mk_PL_charclass.pl
@@ -64,7 +64,7 @@ while (<$fh>) {
# Lines look like (without the initial '#'
#0130; F; 0069 0307; # LATIN CAPITAL LETTER I WITH DOT ABOVE
# Get rid of comments, ignore blank or comment-only lines
- my $line = $_ =~ s/ (?: \s* \# .* )? $ //rx;
+ my $line = $_ =~ s/ (?: \s* \# .* )? $ //x;
next unless length $line;
my ($hex_from, $fold_type, @folded) = split /[\s;]+/, $line;