Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: c164c467952dd4fb7b81b3030f8ccc445ae438a8 https://github.com/Perl/perl5/commit/c164c467952dd4fb7b81b3030f8ccc445ae438a8 Author: Karl Williamson <k...@cpan.org> Date: 2023-07-03 (Mon, 03 Jul 2023)
Changed paths: M perl.h Log Message: ----------- perl.h: Use an enum to simplify consecutive value initialization This commit replaces the clumsy method to initialize some symbols with consecutive vaues. This also presents opportunities to declare variables as the particular enum type, to allow for better checking and code generation. Commit: 285aa86e9e59c1a4c3b9f42fdffc94e6fa656cee https://github.com/Perl/perl5/commit/285aa86e9e59c1a4c3b9f42fdffc94e6fa656cee Author: Karl Williamson <k...@cpan.org> Date: 2023-07-03 (Mon, 03 Jul 2023) Changed paths: M locale.c M perl.h Log Message: ----------- locale.c: Always leave a space for LC_ALL entries Some platforms may not have the LC_ALL conglomerate category. This commit leaves a placeholder for it anyways. Having this always there can lead to some simplifications. Compare: https://github.com/Perl/perl5/compare/ac95fc10948d...285aa86e9e59