In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/6d3f582d7a5b910929925bc7e39b7a3fc2d3f997?hp=bf2614180a655fadfe4ad9de9bbcf01c42b29e7e>
- Log ----------------------------------------------------------------- commit 6d3f582d7a5b910929925bc7e39b7a3fc2d3f997 Author: Father Chrysostomos <[email protected]> Date: Sat Jul 13 14:19:48 2013 -0700 Wrap a long verbatim line in perlvar.pod ----------------------------------------------------------------------- Summary of changes: pod/perlvar.pod | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pod/perlvar.pod b/pod/perlvar.pod index 7cc0a18..a278d10 100644 --- a/pod/perlvar.pod +++ b/pod/perlvar.pod @@ -426,7 +426,8 @@ Previously, only child processes received stringified values: $ENV{'bar'} = \$foo; # Always printed 'non ref' - system($^X,'-e',q/print ( ref $ENV{'bar'} ? 'ref' : 'non ref' ) /); + system($^X, '-e', + q/print ( ref $ENV{'bar'} ? 'ref' : 'non ref' ) /); This happens because you can't really share arbitrary data structures with foreign processes. -- Perl5 Master Repository
