diff options
author | Karl Williamson <public@khwilliamson.com> | 2010-07-31 22:20:43 -0600 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-08-11 10:23:35 +0200 |
commit | e795e96407a9fc6554e7af8feb583459eaf0cd1e (patch) | |
tree | f6eec734e2c5bf5510605dd6a7be0deefd81a8b4 /pod | |
parent | 1ad4ec548311231461a68d0e66335fc3abf1540f (diff) | |
download | perl-e795e96407a9fc6554e7af8feb583459eaf0cd1e.tar.gz |
regexp.h: Move bits around
make regen needed.
This commit moves some bits in extflags around so that all the unallocated
ones are at the boundary between the unshared portion and the portion
shared with op.h. This allows them to be allocated in the future to go
either way, without affecting binary compatibility at that time.
The high-order bits are unaffected, but the low order ones move to fill
the gap.
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perl5134delta.pod | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pod/perl5134delta.pod b/pod/perl5134delta.pod index f7e76bd923..418ac889fe 100644 --- a/pod/perl5134delta.pod +++ b/pod/perl5134delta.pod @@ -84,6 +84,11 @@ when loading every newly compiled extension, compares the API version of the running perl with the version a module has been compiled for and raises an exception if they don't match. +=head2 Binary Incompatible with all previous Perls + +Some bit fields have been reordered, hence this release will not be binary +comptible with any previous Perl release. + =head1 Deprecations XXX Any deprecated features, syntax, modules etc. should be listed here. |