summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2015-08-29 21:42:02 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2015-08-29 21:42:02 +0100
commitb389fae19c20d6e967a37431f2d8464e059a60a7 (patch)
tree1f958ae551d889e99a6302f3de4f53bced25b6ca
parent4aee63ef3a77c6ba96c8a88de3ab800a82f645e0 (diff)
downloadperl-b389fae19c20d6e967a37431f2d8464e059a60a7.tar.gz
perldelta - Add links and other minor edits
-rw-r--r--pod/perldelta.pod17
1 files changed, 9 insertions, 8 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index c7cb43182d..bcfde9f5b0 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -234,17 +234,18 @@ L<[perl #125541]|https://rt.perl.org/Ticket/Display.html?id=125541>
=item *
-Regular expression possessive quantifier v5.20 regression now fixed.
-C<qr/>I<PAT>C<{>I<min>,I<max>C<}+>C</> is supposed to behave identically
-to C<qr/(?E<gt>>I<PAT>C<{>I<min>,I<max>C<})/>. Since v5.20, this didn't
-work if I<min> and I<max> were equal. [perl #125825]
+Regular expression possessive quantifier Perl 5.20 regression now fixed.
+C<qr/>I<PAT>C<{>I<min>,I<max>C<}+>C</> is supposed to behave identically to
+C<qr/(?E<gt>>I<PAT>C<{>I<min>,I<max>C<})/>. Since Perl 5.20, this didn't work
+if I<min> and I<max> were equal.
+L<[perl #125825]|https://rt.perl.org/Ticket/Display.html?id=125825>
=item *
-Code like C</$a[/> used to read the next line of input and treat it as
-though it came immediately after the opening bracket. Some invalid code
-consequently would parse and run, but some code caused crashes, so this is
-now disallowed. [perl #123712]
+Code like C</$a[/> used to read the next line of input and treat it as though
+it came immediately after the opening bracket. Some invalid code consequently
+would parse and run, but some code caused crashes, so this is now disallowed.
+L<[perl #123712]|https://rt.perl.org/Ticket/Display.html?id=123712>
=back