Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 922562d10af7810210fc8afb3c3666e0b7d9594e https://github.com/Perl/perl5/commit/922562d10af7810210fc8afb3c3666e0b7d9594e Author: Paul "LeoNerd" Evans <leon...@leonerd.org.uk> Date: 2022-07-02 (Sat, 02 Jul 2022)
Changed paths: M hv.h M sv.h Log Message: ----------- Create `HvHasAUX()` macro Gives a new name `SVphv_HasAUX` to the `SVf_OOK` flag, for use on HVs. For back-compatibility with existing code we'll have to continue to use the same bit position, at least for now. But at least code can use this new name to be clearer about its intent. Commit: 53083cad3a096a3b0c435d3fd0aac9f943d07419 https://github.com/Perl/perl5/commit/53083cad3a096a3b0c435d3fd0aac9f943d07419 Author: Paul "LeoNerd" Evans <leon...@leonerd.org.uk> Date: 2022-07-02 (Sat, 02 Jul 2022) Changed paths: M dump.c M ext/Hash-Util/Util.xs M ext/Hash-Util/lib/Hash/Util.pm M gv.c M hv.c M hv.h M mro_core.c M scope.c M sv.c Log Message: ----------- Use HvHasAUX() rather than SvOOK() when operating on HVs Compare: https://github.com/Perl/perl5/compare/68670bd9d8d2...53083cad3a09