documenting close without arguments
Tom Phoenix [Tue, 23 Jun 1998 08:51:00 +0000 (01:51 -0700)]
Message-ID: <Pine.GSO.3.96.980623084413.24075V-100000@user2.teleport.com>

p4raw-id: //depot/perl@1227

pod/perlfunc.pod

index bfb1c30..909fa80 100644 (file)
@@ -563,9 +563,12 @@ omitted, does a chroot to $_.
 
 =item close FILEHANDLE
 
+=item close
+
 Closes the file or pipe associated with the file handle, returning TRUE
 only if stdio successfully flushes buffers and closes the system file
-descriptor.
+descriptor. Closes the currently selected filehandle if the argument
+is omitted.
 
 You don't have to close FILEHANDLE if you are immediately going to do
 another open() on it, because open() will close it for you.  (See