From: Father Chrysostomos Date: Sat, 17 Sep 2011 18:51:16 +0000 (-0700) Subject: perldelta for h2ph conditional sub fix X-Git-Tag: accepted/trunk/20130322.191538~2718 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d167fe7dcb6293d9ee9583171a52b3da77f87a2;p=platform%2Fupstream%2Fperl.git perldelta for h2ph conditional sub fix --- diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 7b79df8..57c8f86 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -479,13 +479,21 @@ here. Most of these are built within the directories F and F. entries for each change Use L with program names to get proper documentation linking. ] -=head3 L +=head3 L =over 4 =item * -XXX +L used to generate code of the form + + unless(defined(&FOO)) { + sub FOO () {42;} + } + +But the subroutine is a compile-time declaration, and is hence unaffected +by the condition. It has now been corrected to emit a string C +around the subroutine [perl #99368]. =back