Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: d08b8b16a4be8a7b245732aadf4c10d6ba242d5c
https://github.com/Perl/perl5/commit/d08b8b16a4be8a7b245732aadf4c10d6ba242d5c
Author: Karl Williamson <[email protected]>
Date: 2024-01-21 (Sun, 21 Jan 2024)
Changed paths:
M locale.c
Log Message:
-----------
locale.c: Refactor some code
Three conditions share some code. By setting two variables in the
switch case: statements for each, there is no need to iterate on the
hash; we can directly delete the desired SV, which allows all three
conditions to share more code. This delete allows a later sv_set() to
steal a PV.
Commit: 0f494ec14c04e2a535493e619c1248df3f2aa8a2
https://github.com/Perl/perl5/commit/0f494ec14c04e2a535493e619c1248df3f2aa8a2
Author: Karl Williamson <[email protected]>
Date: 2024-01-21 (Sun, 21 Jan 2024)
Changed paths:
M locale.c
Log Message:
-----------
locale.c: Don't compile unreachable code
Compare: https://github.com/Perl/perl5/compare/5da3697fe7b8...0f494ec14c04