diff options
author | Gerard Goossen <gerard@ggoossen.net> | 2011-01-17 22:12:53 +0100 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-07-11 13:13:55 -0700 |
commit | bbd913065e380df5bdf59cf693e631193415ca9b (patch) | |
tree | 164acb5a19fd84ed043bae823417f081e0cc642c /op.h | |
parent | b852bf25024c0d639055357ed278f488e26294e4 (diff) | |
download | perl-bbd913065e380df5bdf59cf693e631193415ca9b.tar.gz |
use a flag to signal a stacking filetests instead of peeking at the next op.
Preparation for the codegeneration changes where the next op isn't accessible.
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -284,7 +284,8 @@ Deprecated. Use C<GIMME_V> instead. /* Private for OP_FTXXX */ #define OPpFT_ACCESS 2 /* use filetest 'access' */ -#define OPpFT_STACKED 4 /* stacked filetest, as in "-f -x $f" */ +#define OPpFT_STACKED 4 /* stacked filetest, as "-f" in "-f -x $f" */ +#define OPpFT_STACKING 8 /* stacking filetest, as "-x" in "-f -x $f" */ /* Private for OP_(MAP|GREP)(WHILE|START) */ #define OPpGREP_LEX 2 /* iterate over lexical $_ */ |