summaryrefslogtreecommitdiff
path: root/gv.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-08-29 12:25:00 -0600
committerKarl Williamson <khw@cpan.org>2020-12-27 12:43:55 -0700
commit52e47e2245c776f87b48eb4d4989a823997e7689 (patch)
treec73f5409f509d674c09ef67e8e0880c52bc8a2b4 /gv.c
parent2e056cf94a7ce6085dd18a17e472fb202d07149a (diff)
downloadperl-52e47e2245c776f87b48eb4d4989a823997e7689.tar.gz
perlapi: More fully document gv_stashpvn
Diffstat (limited to 'gv.c')
-rw-r--r--gv.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/gv.c b/gv.c
index d7048248c2..7c758a63e0 100644
--- a/gv.c
+++ b/gv.c
@@ -1473,12 +1473,13 @@ is returned.
Flags may be one of:
- GV_ADD
- SVf_UTF8
- GV_NOADD_NOINIT
- GV_NOINIT
- GV_NOEXPAND
- GV_ADDMG
+ GV_ADD Create and initialize the package if doesn't
+ already exist
+ GV_NOADD_NOINIT Don't create the package,
+ GV_ADDMG GV_ADD iff the GV is magical
+ GV_NOINIT GV_ADD, but don't initialize
+ GV_NOEXPAND Don't expand SvOK() entries to PVGV
+ SVf_UTF8 The name is in UTF-8
The most important of which are probably C<GV_ADD> and C<SVf_UTF8>.