diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2009-05-30 00:07:40 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2009-05-30 00:07:40 +0200 |
commit | ec6d81aba325c8f14f91ef2a6c202902427d3d66 (patch) | |
tree | a2ca6a0d7b42aa57d367f6278b781e872972b3ed /op.h | |
parent | b8de32d59998a5999bfdf82297af4ccc75421091 (diff) | |
download | perl-ec6d81aba325c8f14f91ef2a6c202902427d3d66.tar.gz |
Document the PERL_LOADMOD_ flags
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -600,9 +600,9 @@ struct loop { #endif /* flags used by Perl_load_module() */ -#define PERL_LOADMOD_DENY 0x1 -#define PERL_LOADMOD_NOIMPORT 0x2 -#define PERL_LOADMOD_IMPORT_OPS 0x4 +#define PERL_LOADMOD_DENY 0x1 /* no Module */ +#define PERL_LOADMOD_NOIMPORT 0x2 /* use Module () */ +#define PERL_LOADMOD_IMPORT_OPS 0x4 /* use Module (...) */ #if defined(PERL_IN_PERLY_C) || defined(PERL_IN_OP_C) #define ref(o, type) doref(o, type, TRUE) |