diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-08-25 18:42:46 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-08-25 18:42:46 +0000 |
commit | 6f33ba736d46c2f5bfdb2405fd09d82ec18a1d07 (patch) | |
tree | f5863be8476f45a5a89f4a8149544dd685f3f482 /perl.h | |
parent | 4f2c4fd8672a69832963d72529d4a1e84c6fcacf (diff) | |
download | perl-6f33ba736d46c2f5bfdb2405fd09d82ec18a1d07.tar.gz |
Fix parsing problems with the // operator.
Make // able to follow various unary operators used without
arguments or parens (shift, pop, getc, pos, readline,
readlink, undef, umask, and the filetest operators), as
well as the <FH> operator.
p4raw-id: //depot/perl@17777
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3178,7 +3178,8 @@ typedef enum { XBLOCK, XATTRBLOCK, XATTRTERM, - XTERMBLOCK + XTERMBLOCK, + XTERMORDORDOR /* evil hack */ } expectation; enum { /* pass one of these to get_vtbl */ |