summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2009-05-30 00:07:40 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2009-05-30 00:07:40 +0200
commitec6d81aba325c8f14f91ef2a6c202902427d3d66 (patch)
treea2ca6a0d7b42aa57d367f6278b781e872972b3ed /op.h
parentb8de32d59998a5999bfdf82297af4ccc75421091 (diff)
downloadperl-ec6d81aba325c8f14f91ef2a6c202902427d3d66.tar.gz
Document the PERL_LOADMOD_ flags
Diffstat (limited to 'op.h')
-rw-r--r--op.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/op.h b/op.h
index dad6016fdb..f06dbdc120 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)