diff options
author | Father Chrysostomos <sprout@cpan.org> | 2016-08-04 13:55:41 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2016-08-04 13:59:52 -0700 |
commit | a16834824708e400dd3b5e8219647a2266bc3d83 (patch) | |
tree | fad068c314e5e276373e1d68a638b990c1958615 /embed.fnc | |
parent | 15dd00343b389c6a74d3fbe7b76a39028f8c6865 (diff) | |
download | perl-a16834824708e400dd3b5e8219647a2266bc3d83.tar.gz |
gv.c:require_tie_mod: Accept pvn params
All the callers create the SV on the fly. We might as well put the
SV creation into the function itself. (A forthcoming commit will
refactor things to avoid the SV when possible.)
Diffstat (limited to 'embed.fnc')
-rw-r--r-- | embed.fnc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1938,7 +1938,8 @@ s |bool|gv_magicalize|NN GV *gv|NN HV *stash|NN const char *name \ s |void|maybe_multimagic_gv|NN GV *gv|NN const char *name|const svtype sv_type s |bool|gv_is_in_main|NN const char *name|STRLEN len \ |const U32 is_utf8 -s |void |require_tie_mod|NN GV *gv|NN const char *varpv|NN SV* namesv \ +s |void |require_tie_mod|NN GV *gv|NN const char *varpv \ + |NN const char * name|STRLEN len \ |const U32 flags #endif |