Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: 3bbdecaa07f04ff3d6aecfe8b02e964ad9dc0fc7
https://github.com/Perl/perl5/commit/3bbdecaa07f04ff3d6aecfe8b02e964ad9dc0fc7
Author: Nicholas Clark <[email protected]>
Date: 2021-08-24 (Tue, 24 Aug 2021)
Changed paths:
M hv.c
Log Message:
-----------
Don't call HvHASKFLAGS_on() in S_hv_delete_common().
We're not changing any keys on the hash, so if it didn't have any keys with
flags before the delete, it won't have any afterwards either.
I added this line in Nov 2003 as part of commit cd6d36ac47e47079:
Move the negative key -> utf8 flag conversion out to hv_delete
I don't think that it was correct then, and I don't think that it's correct
now.