diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-09-05 20:30:01 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-09-06 16:26:28 -0700 |
commit | 466f50cc2f996522d40fa0ee032e6cc27fea3a77 (patch) | |
tree | 28e74e77fac51aaec43be823c56c24180ae4954b /op.h | |
parent | baf4892673297219daaa9599eca2cccb6b00c46f (diff) | |
download | perl-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.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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) |