diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-08-26 22:05:40 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-08-26 22:05:40 -0700 |
commit | cb85b2dba9dd71becf505fd4190513a7648f1ff8 (patch) | |
tree | 471b0b86712ece64a1be8d1fa2d001083712a001 /op.h | |
parent | bfce6a3ec7ddae6ac64d6a35dab18471c421ad67 (diff) | |
download | perl-cb85b2dba9dd71becf505fd4190513a7648f1ff8.tar.gz |
Add OPpCOREARGS_SCALARMOD flag
pp_coreargs will use this to distinguish between the \$ and \[$@%*]
prototypes.
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -301,6 +301,7 @@ Deprecated. Use C<GIMME_V> instead. /* These must not conflict with OPpDONT_INIT_GV. See pp.c:S_rv2gv. */ #define OPpCOREARGS_DEREF1 1 /* Arg 1 is a handle constructor */ #define OPpCOREARGS_DEREF2 2 /* Arg 2 is a handle constructor */ +#define OPpCOREARGS_SCALARMOD 64 /* \$ rather than \[$@%*] */ #define OPpCOREARGS_PUSHMARK 128 /* Call pp_pushmark */ struct op { |