summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2014-09-05 20:30:01 -0700
committerFather Chrysostomos <sprout@cpan.org>2014-09-06 16:26:28 -0700
commit466f50cc2f996522d40fa0ee032e6cc27fea3a77 (patch)
tree28e74e77fac51aaec43be823c56c24180ae4954b /op.h
parentbaf4892673297219daaa9599eca2cccb6b00c46f (diff)
downloadperl-466f50cc2f996522d40fa0ee032e6cc27fea3a77.tar.gz
op.h: Correct PERL_LOADMOD_IMPORT_OPS comment
This description, added in ec6d81aba, is misleading.
Diffstat (limited to 'op.h')
-rw-r--r--op.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/op.h b/op.h
index 6070326b20..1b247ce33b 100644
--- a/op.h
+++ b/op.h
@@ -687,7 +687,10 @@ struct loop {
/* flags used by Perl_load_module() */
#define PERL_LOADMOD_DENY 0x1 /* no Module */
#define PERL_LOADMOD_NOIMPORT 0x2 /* use Module () */
-#define PERL_LOADMOD_IMPORT_OPS 0x4 /* use Module (...) */
+#define PERL_LOADMOD_IMPORT_OPS 0x4 /* import arguments
+ are passed as a sin-
+ gle op tree, not a
+ list of SVs */
#if defined(PERL_IN_PERLY_C) || defined(PERL_IN_OP_C) || defined(PERL_IN_TOKE_C)
#define ref(o, type) doref(o, type, TRUE)