[ID 20001112.004] man perlfunc omits tell()'s error return
authorNicholas Clark <nick@ccl4.org>
Sun, 12 Nov 2000 20:03:22 +0000 (20:03 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Sun, 12 Nov 2000 21:37:06 +0000 (21:37 +0000)
Message-Id: <E13v3LV-0008Pd-00@Bagpuss.unfortu.net>

p4raw-id: //depot/perl@7658

pod/perlfunc.pod

index 558ae4e..b469014 100644 (file)
@@ -5068,9 +5068,9 @@ case the SCALAR is empty you can use OFFSET but only zero offset.
 
 =item tell
 
-Returns the current position for FILEHANDLE.  FILEHANDLE may be an
-expression whose value gives the name of the actual filehandle.  If
-FILEHANDLE is omitted, assumes the file last read.  
+Returns the current position for FILEHANDLE, or -1 on error.  FILEHANDLE
+may be an expression whose value gives the name of the actual filehandle.
+If FILEHANDLE is omitted, assumes the file last read.  
 
 There is no C<systell> function.  Use C<sysseek(FH, 0, 1)> for that.