diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-08 18:28:13 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-08 18:28:13 +0000 |
commit | c41717c18e39528f2a9ab5c6c5a3eecc66765598 (patch) | |
tree | b700d3ed7ddb36fb2d15c007f31f5bd0346d8418 /lib/File | |
parent | 7dcfa59df9743b465a5d4e34c026524785a66007 (diff) | |
download | perl-c41717c18e39528f2a9ab5c6c5a3eecc66765598.tar.gz |
Do away with array context, from Daniel Chetlin <daniel@chetlin.com>
(either perlbug or p5p ate the original), plus regen
perlapi and perltoc.
p4raw-id: //depot/perl@6553
Diffstat (limited to 'lib/File')
-rw-r--r-- | lib/File/Temp.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/File/Temp.pm b/lib/File/Temp.pm index aac8b7a93c..48b1184eba 100644 --- a/lib/File/Temp.pm +++ b/lib/File/Temp.pm @@ -1314,7 +1314,7 @@ exits. No access to the filename is provided. sub tmpfile { - # Simply call tmpnam() in an array context + # Simply call tmpnam() in a list context my ($fh, $file) = tmpnam(); # Make sure file is removed when filehandle is closed |