perldelta - Fill in currently remaining TODO items
authorSteve Hay <steve.m.hay@googlemail.com>
Thu, 19 Sep 2013 15:10:36 +0000 (16:10 +0100)
committerSteve Hay <steve.m.hay@googlemail.com>
Thu, 19 Sep 2013 15:10:36 +0000 (16:10 +0100)
9d32676e doesn't need one since it only fixes things that were added post
5.19.3, but [perl #117265] is worth mentioning somewhere so I've added that
to the warnings entry.

pod/perldelta.pod

index 5469f0a..ebb6ef3 100644 (file)
@@ -1,13 +1,5 @@
 =encoding utf8
 
-=for comment
-To do:
-df8c7dee Fix segfault in filehandle duplication
-b66f3475 Fix PerlIO_get_cnt and friends
-e94bb470 install useful Regexp::CARP_TRACE from Carp
-9d32676e [perl #117265] fix various problems with safesyscalls
-531d75b0 [perl #89502]: Add support for Atari FreeMiNT platform
-
 =head1 NAME
 
 [ this is a template for a new perldelta file.  Any text flagged as XXX needs
@@ -56,6 +48,10 @@ available.
 The regular expression engine now supports strings longer than 2**31
 characters.  [perl #112790, #116907]
 
+The functions PerlIO_get_bufsiz, PerlIO_get_cnt, PerlIO_set_cnt and
+PerlIO_set_ptrcnt now have SSize_t, rather than int, return values and
+parameters.
+
 =head2 New slice syntax
 
 The new C<%hash{...}> and C<%array[...]> syntax returns a list of key/value (or
@@ -260,6 +256,11 @@ internally represented.
 
 =item *
 
+C<Carp> also now shows subroutine arguments that are references to regexp
+objects in a consistent manner in stack traces.
+
+=item *
+
 C<Carp> now takes care not to clobber the status variables $! and $^E.
 
 =item *
@@ -648,6 +649,7 @@ L<warnings> has been upgraded from version 1.18 to 1.19.
 
 The C<syscalls> warnings category has been added to check for embedded NUL
 (C<"\0">) characters in pathnames and string arguments to other system calls.
+[perl #117265]
 
 =item *
 
@@ -994,6 +996,12 @@ source tree.
 
 =over 4
 
+=item FreeMiNT
+
+Support has been added for FreeMiNT, a free open-source OS for the Atari ST
+system and its successors, based on the original MiNT that was officially
+adopted by Atari.
+
 =item Bitrig
 
 Compile support has been added for Bitrig, a fork of OpenBSD.
@@ -1285,6 +1293,10 @@ Perl 5.19.3 accidentally caused C<\(1+2)> to return a reference to the same
 mutable scalar each time, so that modifications affect future evaluations.
 This has been fixed.  [perl #119501]
 
+=item *
+
+A possible segmentation fault in filehandle duplication has been fixed.
+
 =back
 
 =head1 Known Problems