From: Nicholas Clark Date: Sun, 12 Nov 2000 20:03:22 +0000 (+0000) Subject: [ID 20001112.004] man perlfunc omits tell()'s error return X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fc579abb50bda64a4721be2bed2fbeeadee67a75;p=p5sagit%2Fp5-mst-13.2.git [ID 20001112.004] man perlfunc omits tell()'s error return Message-Id: p4raw-id: //depot/perl@7658 --- diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 558ae4e..b469014 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -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 function. Use C for that.