From: Rafael Garcia-Suarez Date: Fri, 29 May 2009 22:07:40 +0000 (+0200) Subject: Document the PERL_LOADMOD_ flags X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ec6d81aba325c8f14f91ef2a6c202902427d3d66;p=p5sagit%2Fp5-mst-13.2.git Document the PERL_LOADMOD_ flags --- diff --git a/op.h b/op.h index dad6016..f06dbdc 100644 --- a/op.h +++ b/op.h @@ -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)