diff options
author | Father Chrysostomos <sprout@cpan.org> | 2010-11-20 18:27:55 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-11-20 21:04:19 -0800 |
commit | 27a1175bf36db67955ca3363f80694803bdcbfb2 (patch) | |
tree | 6275c8db1ef30759c06bc6238488393a34ccdeb6 /mro.c | |
parent | dbbe2d83c45bfa50b7f118650730dbd85df84150 (diff) | |
download | perl-27a1175bf36db67955ca3363f80694803bdcbfb2.tar.gz |
Add flags param to hv_ename_*
We will need this for making the API UTF8-aware in 5.16
or whenever.
Diffstat (limited to 'mro.c')
-rw-r--r-- | mro.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -841,7 +841,7 @@ S_mro_gather_and_rename(pTHX_ HV * const stashes, HV * const seen_stashes, if(PL_stashcache) (void) hv_delete(PL_stashcache, name, namlen, G_DISCARD); - hv_ename_delete(oldstash, name, namlen); + hv_ename_delete(oldstash, name, namlen, 0); /* If the name deletion caused a name change, then we are not * going to call mro_isa_changed_in with this name (and not at all @@ -859,7 +859,7 @@ S_mro_gather_and_rename(pTHX_ HV * const stashes, HV * const seen_stashes, } check_stash: if(stash) { - hv_ename_add(stash, name, namlen); + hv_ename_add(stash, name, namlen, 0); /* Add it to the big list if it needs * mro_isa_changed_in called on it. That happens if it was |