summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-10-16 06:53:11 -0600
committerKarl Williamson <khw@cpan.org>2020-10-16 07:01:00 -0600
commitc6565d4b08aaa574913fcf883d464fad2859c65a (patch)
tree596d674346e653ab5e334b498317a5bce8c0111b /op.h
parente61025dfb72774d414f04b0107f97b8c4b068cf2 (diff)
downloadperl-c6565d4b08aaa574913fcf883d464fad2859c65a.tar.gz
Make some flags accessible from /ext
Nothing in the test suite (nor apparently CPAN) had exercised this area of the code, and so this flaw hadn't been discovered. But new code about to be commited does.
Diffstat (limited to 'op.h')
-rw-r--r--op.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.h b/op.h
index f5cda92ecf..2279edbb97 100644
--- a/op.h
+++ b/op.h
@@ -837,7 +837,7 @@ preprocessing token; the type of C<arg> depends on C<which>.
#define RV2CVOPCV_MARK_EARLY 0x00000001
#define RV2CVOPCV_RETURN_NAME_GV 0x00000002
#define RV2CVOPCV_RETURN_STUB 0x00000004
-#ifdef PERL_CORE /* behaviour of this flag is subject to change: */
+#if defined(PERL_CORE) || defined(PERL_EXT) /* behaviour of this flag is subject to change: */
# define RV2CVOPCV_MAYBE_NAME_GV 0x00000008
#endif
#define RV2CVOPCV_FLAG_MASK 0x0000000f /* all of the above */