diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-06-02 16:33:31 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-06-03 20:30:28 -0700 |
commit | 81db44398a49c2d50e2ae91383f44cdd1373776f (patch) | |
tree | 43a541cc66281fcc340d81e26762c152a16d7b58 /op.h | |
parent | ac8b87d7b0cd3f06bbb75d2642abb5f6f9dea5a2 (diff) | |
download | perl-81db44398a49c2d50e2ae91383f44cdd1373776f.tar.gz |
op.h: Corrent comment about entersub strictures
Flag 2 on entersub is HINT_STRICT_REFS, not _SUBS.
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -204,7 +204,7 @@ Deprecated. Use C<GIMME_V> instead. #define OPpENTERSUB_HASTARG 4 /* Called from OP tree. */ #define OPpENTERSUB_INARGS 1 /* Lval used as arg to a sub. */ /* used by OPpDEREF (32|64) */ -/* used by HINT_STRICT_SUBS 2 */ +/* used by HINT_STRICT_REFS 2 */ /* Mask for OP_ENTERSUB flags, the absence of which must be propagated in dynamic context */ #define OPpENTERSUB_LVAL_MASK (OPpLVAL_INTRO|OPpENTERSUB_INARGS) |