diff options
author | chromatic <chromatic@wgz.org> | 2001-09-22 15:27:56 -0600 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2001-09-23 06:56:32 +0000 |
commit | 39b99f2105ed8866b81c468bff75857b0c5187f9 (patch) | |
tree | 4567559284e93cb5e5391db7463f3ecf154378c6 /pod/perlref.pod | |
parent | 39e79f6b7da6190c441d02fdb038af6bdc815b1e (diff) | |
download | perl-39b99f2105ed8866b81c468bff75857b0c5187f9.tar.gz |
Re:
Forgotten deprecation of *glob{FILEHANDLE}?
Message-Id: <20010923033252.33085.qmail@onion.perl.org>
p4raw-id: //depot/perl@12153
Diffstat (limited to 'pod/perlref.pod')
-rw-r--r-- | pod/perlref.pod | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pod/perlref.pod b/pod/perlref.pod index a62276b782..e8e9ab78fa 100644 --- a/pod/perlref.pod +++ b/pod/perlref.pod @@ -243,7 +243,9 @@ All of these are self-explanatory except for C<*foo{IO}>. It returns the IO handle, used for file handles (L<perlfunc/open>), sockets (L<perlfunc/socket> and L<perlfunc/socketpair>), and directory handles (L<perlfunc/opendir>). For compatibility with previous -versions of Perl, C<*foo{FILEHANDLE}> is a synonym for C<*foo{IO}>. +versions of Perl, C<*foo{FILEHANDLE}> is a synonym for C<*foo{IO}>, though it +is deprecated as of 5.8.0. If deprecation warnings are in effect, it will warn +of its use. C<*foo{THING}> returns undef if that particular THING hasn't been used yet, except in the case of scalars. C<*foo{SCALAR}> returns a reference to an |