perldelta for select fixes
authorFather Chrysostomos <sprout@cpan.org>
Mon, 2 Jan 2012 21:40:29 +0000 (13:40 -0800)
committerFather Chrysostomos <sprout@cpan.org>
Tue, 3 Jan 2012 06:10:34 +0000 (22:10 -0800)
pod/perldelta.pod

index 10ae0ad..aec6f3c 100644 (file)
@@ -1,7 +1,7 @@
 =encoding utf8
 
 =for comment
-This has been completed up to 01e8a1a.
+This has been completed up to 2956677.
 
 =head1 NAME
 
@@ -500,6 +500,13 @@ When one writes C<open foo || die>, which used to work in Perl 4, a
 apply to fully-qualified bareword handle names as well.  This has been
 corrected.
 
+=item * C<select> and package aliasing
+
+After package aliasing (C<*foo:: = *bar::>), C<select> with 0 or 1 argument
+would sometimes return a name that could not be used to refer to the
+filehandle, or sometimes it would return C<undef> even when a filehandle
+was selected.  Now it returns a typeglob reference in such cases.
+
 =back
 
 =head1 Known Problems