summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2013-06-10 00:49:26 -0700
committerFather Chrysostomos <sprout@cpan.org>2013-07-27 23:16:25 -0700
commita1221657d9ff110a5521d5f4f7dda9c9ed2a36b0 (patch)
tree359f81f560549ace501b9db94f670f6f22802c60
parent510f162848ed052ce0d7d3556ab6a9076b1ca8ae (diff)
downloadperl-a1221657d9ff110a5521d5f4f7dda9c9ed2a36b0.tar.gz
perldelta for two lexsub fixes
(cherry picked from commit 81748522aff12edb368615e9512781d00a2d5d5b)
-rw-r--r--pod/perldelta.pod10
1 files changed, 10 insertions, 0 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index f7cf93770d..81ed5a5791 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -391,6 +391,16 @@ C<\x80..\xff> followed a UTF-8 string, e.g.
[perl #118297].
+=item *
+
+Lexical constants (C<my sub a() { 42 }>) no longer crash when inlined.
+
+=item *
+
+Parameter prototypes attached to lexical subroutines are now respected when
+compiling sub calls without parentheses. Previously, the prototypes were
+honoured only for calls I<with> parentheses. [RT #116735]
+
=back
=head1 Known Problems