diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-02-26 11:07:06 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-02-26 11:07:06 +0000 |
commit | cb0d96b9c873979acbc861b2863a39dda41d3ace (patch) | |
tree | 32b2ded2ea601cee7d68839acd37860da0a6be7b /op.h | |
parent | cb949c373013315cbcfb6613fc1f8bf6711295cb (diff) | |
download | perl-cb0d96b9c873979acbc861b2863a39dda41d3ace.tar.gz |
Fix bug #41550 - AUTOLOAD :lvalue not working the same in blead as in
5.8.8 (a code example from "Extending and Embedding Perl")
p4raw-id: //depot/perl@30407
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -203,14 +203,14 @@ Deprecated. Use C<GIMME_V> instead. #define OPpLVAL_DEFER 16 /* Defer creation of array/hash elem */ /* OP_RV2?V, OP_GVSV, OP_ENTERITER only */ #define OPpOUR_INTRO 16 /* Variable was in an our() */ - /* OP_RV2[AH]V, OP_PAD[AH]V, OP_[AH]ELEM */ + /* OP_RV2[AGH]V, OP_PAD[AH]V, OP_[AH]ELEM */ #define OPpMAYBE_LVSUB 8 /* We might be an lvalue to return */ /* OP_PADSV only */ #define OPpPAD_STATE 16 /* is a "state" pad */ /* for OP_RV2?V, lower bits carry hints (currently only HINT_STRICT_REFS) */ /* OP_RV2GV only */ -#define OPpDONT_INIT_GV 8 /* Call gv_fetchpv with GV_NOINIT */ +#define OPpDONT_INIT_GV 4 /* Call gv_fetchpv with GV_NOINIT */ /* (Therefore will return whatever is currently in the symbol table, not guaranteed to be a PVGV) */ |