=head2 Tainting and printf
When perl is run under taint mode, C<printf()> and C<sprintf()> will now
-reject any tainted format argument. (Rafael Garcia-SUarez)
+reject any tainted format argument. (Rafael Garcia-Suarez)
=head2 undef and signal handlers
=item Backtracking control verbs
-The regex engine now supports a number of special purpose backtrack
+The regex engine now supports a number of special-purpose backtrack
control verbs: (*THEN), (*PRUNE), (*MARK), (*SKIP), (*COMMIT), (*FAIL)
and (*ACCEPT). See L<perlre> for their descriptions. (Yves Orton)
A new syntax C<\g{N}> or C<\gN> where "N" is a decimal integer allows a
safer form of back-reference notation as well as allowing relative
backreferences. This should make it easier to generate and embed patterns
-that contain backreferences. (Yves Orton)
+that contain backreferences. See L<perlre/"Capture buffers">. (Yves Orton)
=item Regexp::Keep internalized
require Carp;
Carp::confess "argh";
+=item C<Attribute::Handlers>
+
+C<Attribute::Handlers> can now report the caller's file and line number.
+(David Feldman)
+
=back
=head1 Utility Changes
with various C++ compilers (although the situation is not perfect with
some of the compilers on some of the platforms tested.)
+=head2 Static build on Win32
+
+It's now possible to build a C<perl-static.exe> that doesn't depend
+on C<perl59.dll> on Win32. See the Win32 makefiles for details.
+(Steve Hay)
+
=head2 Ports
Perl has been reported to work on MidnightBSD.