summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2015-10-31 11:53:38 +0000
committerSteve Hay <steve.m.hay@googlemail.com>2015-10-31 11:53:38 +0000
commitfc51088999db734bf839bd69f8b42a034ce6d390 (patch)
tree4ddb787facdf8c5b96583a8840b07e95c5cbd00c
parent7206936f09d5cb876114b9e8f87df676290f44d0 (diff)
downloadperl-fc51088999db734bf839bd69f8b42a034ce6d390.tar.gz
perldelta: Fix missing =head2 title and add one more bug fix entry
-rw-r--r--pod/perldelta.pod12
1 files changed, 10 insertions, 2 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index fe56a5e666..aba2707635 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -22,7 +22,7 @@ implementation and avoided them in the future.
If any others exist, they are bugs, and we request that you submit a report.
See L</Reporting Bugs> below.
-=head2
+=head2 Bounds Checking Constructs
Several bugs, including a segmentation fault, have been fixed with the bounds
checking constructs (introduced in Perl 5.22) C<\b{gcb}>, C<\b{sb}>, C<\b{wb}>,
@@ -216,11 +216,19 @@ L<[perl #125541]|https://rt.perl.org/Ticket/Display.html?id=125541>
=item *
-Nested quantifiers such as C<< /.{1}??/ >> should cause perl to throw a fatal
+Nested quantifiers such as C</.{1}??/> should cause perl to throw a fatal
error, but were being silently accepted since Perl 5.20.0. This has been
fixed.
L<[perl #126253]|https://rt.perl.org/Ticket/Display.html?id=126253>
+=item *
+
+Regular expression sequences such as C</(?i/> (and similarly with other
+recognized flags or combination of flags) should cause perl to throw a fatal
+error, but were being silently accepted since Perl 5.18.0. This has been
+fixed.
+L<[perl #126178]|https://rt.perl.org/Ticket/Display.html?id=126178>
+
=back
=head1 Acknowledgements