diff options
author | Karl Williamson <khw@cpan.org> | 2020-08-29 12:25:00 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-12-27 12:43:55 -0700 |
commit | 52e47e2245c776f87b48eb4d4989a823997e7689 (patch) | |
tree | c73f5409f509d674c09ef67e8e0880c52bc8a2b4 /gv.c | |
parent | 2e056cf94a7ce6085dd18a17e472fb202d07149a (diff) | |
download | perl-52e47e2245c776f87b48eb4d4989a823997e7689.tar.gz |
perlapi: More fully document gv_stashpvn
Diffstat (limited to 'gv.c')
-rw-r--r-- | gv.c | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -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>. |