diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-02-17 21:22:17 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-02-17 21:22:17 +0000 |
commit | 9b11ae5efd28ae7e3371a10346290d0fad9432ad (patch) | |
tree | 0395c0ddb140131c160c1fad61f8f4495c541532 /pod/perl591delta.pod | |
parent | 2d2cf66ad265b8710fd8b64e24b1a524655e30d0 (diff) | |
download | perl-9b11ae5efd28ae7e3371a10346290d0fad9432ad.tar.gz |
Dave Mitchell suggested this perldelta entry for the SVp_* reordering.
p4raw-id: //depot/perl@22321
Diffstat (limited to 'pod/perl591delta.pod')
-rw-r--r-- | pod/perl591delta.pod | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/pod/perl591delta.pod b/pod/perl591delta.pod index 564db346a7..2bd185f270 100644 --- a/pod/perl591delta.pod +++ b/pod/perl591delta.pod @@ -5,7 +5,8 @@ perldelta - what is new for perl v5.9.1 =head1 DESCRIPTION This document describes differences between the 5.9.0 release and -the 5.9.1 release. +the 5.9.1 release. See L<perl590delta> for the differences between +5.8.0 and 5.9.0. =head1 Incompatible Changes @@ -157,6 +158,19 @@ program's environment anymore.) =head1 Changed Internals +These news matter to you only if you either write XS code or like to +know about or hack Perl internals (using Devel::Peek or any of the +C<B::> modules counts), or like to run Perl with the C<-D> option. + +=head2 Reordering of SVt_* constants + +The relative ordering of constants that define the various types of C<SV> +have changed; in particular, C<SVt_PVGV> has been moved ahead of C<SVt_PVLV>, +C<SVt_PVAV>, C<SVt_PVHV> and C<SVt_PVCV>. This is unlikely to make any +difference unless you have code that explicitly makes assumptions about that +ordering. (The inheritance hierarchy of C<B::*> objects has been changed +to reflect this.) + =head1 Configuration and Building C<Configure> now invokes callbacks regardless of the value of the variable |