diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-05-10 08:27:35 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-05-10 08:27:35 +0000 |
commit | d0821a6ab8f99abe9cf8554e9f15785beaeb7bb4 (patch) | |
tree | b95dd0356d3fcbf53b98366ac64db43e3e1b72a5 /pod | |
parent | 5e162c31c5aae678d61e707c0e7807818eeb40d5 (diff) | |
download | perl-d0821a6ab8f99abe9cf8554e9f15785beaeb7bb4.tar.gz |
Regarding precedence, filetest operators are the same than
unary operators, but not regarding parsing and parentheses
(see toke.c). Spotted by Eirik Berg Hanssen.
p4raw-id: //depot/perl@31189
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlfunc.pod | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index d7d9044e7b..1755bcefaf 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -296,8 +296,7 @@ and tests the associated file to see if something is true about it. If the argument is omitted, tests C<$_>, except for C<-t>, which tests STDIN. Unless otherwise documented, it returns C<1> for true and C<''> for false, or the undefined value if the file doesn't exist. Despite the funny -names, precedence is the same as any other named unary operator, and -the argument may be parenthesized like any other unary operator. The +names, precedence is the same as any other named unary operator. The operator may be any of: -r File is readable by effective uid/gid. |