summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-06-25 18:40:03 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-25 18:40:03 +0000
commitd4679214791076d9237514d11f1157d01518d06f (patch)
treedc0bb27a0a7883df8e5e1bfcc27c9a44c7b28f76 /pod
parent2554589c31907b9180ed71e0f68af5a4f1febd98 (diff)
downloadperl-d4679214791076d9237514d11f1157d01518d06f.tar.gz
Because of #10932 retract also the perlfunc hunk of #10910.
p4raw-id: //depot/perl@10935
Diffstat (limited to 'pod')
-rw-r--r--pod/perlfunc.pod14
1 files changed, 6 insertions, 8 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 0451232faf..67c305ca6b 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -3596,13 +3596,12 @@ C<chdir> there, it would have been testing the wrong file.
=item readline EXPR
-Reads from the filehandle EXPR. The EXPR can be either the name of
-the handle or the typeglob for it. In scalar context, each call reads
-and returns the next line, until end-of-file is reached, whereupon the
-subsequent call returns undef. In list context, reads until
-end-of-file is reached and returns a list of lines. Note that the
-notion of "line" used here is however you may have defined it with
-C<$/> or C<$INPUT_RECORD_SEPARATOR>). See L<perlvar/"$/">.
+Reads from the filehandle whose typeglob is contained in EXPR. In scalar
+context, each call reads and returns the next line, until end-of-file is
+reached, whereupon the subsequent call returns undef. In list context,
+reads until end-of-file is reached and returns a list of lines. Note that
+the notion of "line" used here is however you may have defined it
+with C<$/> or C<$INPUT_RECORD_SEPARATOR>). See L<perlvar/"$/">.
When C<$/> is set to C<undef>, when readline() is in scalar
context (i.e. file slurp mode), and when an empty file is read, it
@@ -3613,7 +3612,6 @@ operator, but you can use it directly. The C<< <EXPR> >>
operator is discussed in more detail in L<perlop/"I/O Operators">.
$line = <STDIN>;
- $line = readline(STDIN); # same thing
$line = readline(*STDIN); # same thing
=item readlink EXPR