Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: e5c165180cc407f9d7d034fd83f8c28c0134a5c6
https://github.com/Perl/perl5/commit/e5c165180cc407f9d7d034fd83f8c28c0134a5c6
Author: Karl Williamson <[email protected]>
Date: 2025-10-06 (Mon, 06 Oct 2025)
Changed paths:
M regcomp.c
M regcomp_internal.h
Log Message:
-----------
regcomp(_internal).c: Avoid some casts in prints
We have modifiers like %z and %t to portably print items of the given
type. This converts to use those in these files, removing casts that
were previously used.
Commit: 70a73bdabb7ed570cb8451b2d38ec69a4feeb0f6
https://github.com/Perl/perl5/commit/70a73bdabb7ed570cb8451b2d38ec69a4feeb0f6
Author: Karl Williamson <[email protected]>
Date: 2025-10-06 (Mon, 06 Oct 2025)
Changed paths:
M regcomp.c
Log Message:
-----------
regcomp.c: Code points can be UV; not just IV
This converts from using IV to UV. Code points are currently restricted
to 0..IV_MAX, but the intention is to eventually use values outside that
range for internal purposes.
This avoids any potential issues with printing an IV in hex format
Compare: https://github.com/Perl/perl5/compare/76a273b7857d...70a73bdabb7e
To unsubscribe from these emails, change your notification settings at
https://github.com/Perl/perl5/settings/notifications