You might like
[perl5] github.com/Perl/perl5/com… Andy Dougherty - Define _GNU_SOURCE if using the musl libc on linux. Together with prior commits ba73a4c...
github.com
Define _GNU_SOURCE if using the musl libc on linux. · Perl/perl5@04db542
Together with prior commits ba73a4cb8f, f8d82a1010, and 63c1fa6a98, this should close [perl #133760].
[perl5] github.com/Perl/perl5/com… Andy Dougherty - Improve detection of memrchr, strlcat, and strlcpy. This is continuation of commit f8d8...
github.com
Improve detection of memrchr, strlcat, and strlcpy. · Perl/perl5@ba73a4c
This is continuation of commit f8d82a1010 addressing [perl #133760]. Linux systems using the musl C library have memmem, memrchr, strlcat, and strlcpy, but the prototypes are only visible if _GNU_S...
[perl5] github.com/Perl/perl5/com… Karl Williamson - smoke2
github.com
smoke2 · Perl/perl5@760e2b4
smoke2 · Perl/perl5@760e2b4
[perl5] github.com/Perl/perl5/com… Karl Williamson - skip
github.com
skip · Perl/perl5@ba3809b
skip · Perl/perl5@ba3809b
[perl5] github.com/Perl/perl5/com… Karl Williamson - regcomp.c: Fix recent optimization of [...] bug This bug was introduced in b2296192536...
github.com
regcomp.c: Fix recent optimization of [...] bug · Perl/perl5@decddca
This bug was introduced in b2296192536090829ba6d2cb367456f4e346dcc6 n 5.29.7. Using /il should not result in looking for a [:posix:] class that matches the code points given.
[perl5] github.com/Perl/perl5/com… Karl Williamson - pp.c: Don't assume worst case memory needs Since 5.28, there has been a function that ...
github.com
pp.c: Don't assume worst case memory needs · Perl/perl5@7ac5920
Since 5.28, there has been a function that will calculate the expansion of a string when converted into UTF-8, using per-word operations. This means it runs 8 times faster than doing this count pr...
[perl5] github.com/Perl/perl5/com… Karl Williamson - pp.c: Don't use function call for easy copy Like the previous commit, this code is add...
github.com
pp.c: Don't use function call for easy copy · Perl/perl5@7b7dea0
Like the previous commit, this code is adding the UTF-8 for a Greek character to a string. It previously used Copy, but this character is representable as two bytes in both ASCII and EBCDIC UTF-8,...
[perl5] github.com/Perl/perl5/com… Karl Williamson - pp.c: Don't use function call for easy copy This code is adding the UTF-8 for a Greek ...
github.com
pp.c: Don't use function call for easy copy · Perl/perl5@a51239c
This code is adding the UTF-8 for a Greek character to a string. It previously used Copy, but this character is representable as two bytes in both ASCII and EBCDIC UTF-8, the only character sets t...
[perl5] github.com/Perl/perl5/com… Karl Williamson - pp.c: pp_fc(): Simplify The function being called does everything that the code being ...
github.com
pp.c: pp_fc(): Simplify · Perl/perl5@9fd215d
The function being called does everything that the code being eliminated here did. We just pass the function the final destination instead of a temporary.
[perl5] github.com/Perl/perl5/com… Karl Williamson - pp.c: White-space, comments only
github.com
pp.c: White-space, comments only · Perl/perl5@8f589a8
pp.c: White-space, comments only · Perl/perl5@8f589a8
[perl5] github.com/Perl/perl5/com… Karl Williamson - pp.c: Reorder && order in 'if' This makes the test most likely to fail be first, and a...
github.com
pp.c: Reorder && order in 'if' · Perl/perl5@4753f7b
This makes the test most likely to fail be first, and adding an UNLIKELY() to it, thus saving a conditional in most instances.
[perl5] github.com/Perl/perl5/com… Karl Williamson - XXX move to /locale ws. locale.c white space only
github.com
XXX move to /locale ws. locale.c white space only · Perl/perl5@e9d144b
XXX move to /locale ws. locale.c white space only · Perl/perl5@e9d144b
[perl5] github.com/Perl/perl5/com… Karl Williamson - handy.h: Add comment
github.com
handy.h: Add comment · Perl/perl5@57360ed
handy.h: Add comment · Perl/perl5@57360ed
[perl5] github.com/Perl/perl5/com… Karl Williamson - t/re/fold_grind.pl: White-space only Just align some logical or clauses for readability.
github.com
t/re/fold_grind.pl: White-space only · Perl/perl5@062b4f9
Just align some logical or clauses for readability.
[perl5] github.com/Perl/perl5/com… Karl Williamson - pp.c: Use faster method to convert to UTF-8 There is a special inline function that's ...
github.com
pp.c: Use faster method to convert to UTF-8 · Perl/perl5@a3c6f71
There is a special inline function that's used when converting a single byte to UTF-8, that is faster than the more general one used prior to this commit.
[perl5] github.com/Perl/perl5/com… Karl Williamson - pp.c: Add missing assert The comments say there is an assert, but it wasn't there.
github.com
pp.c: Add missing assert · Perl/perl5@4f5c56a
The comments say there is an assert, but it wasn't there.
[perl5] github.com/Perl/perl5/com… Karl Williamson - handy.h: White-space only Vertically align the ternary colon with the question mark ab...
github.com
handy.h: White-space only · Perl/perl5@4f58311
Vertically align the ternary colon with the question mark above it.
[perl5] github.com/Perl/perl5/com… Karl Williamson - handy.h: Add void ﹡ casts to memEQ, memNE This change is to allow these macros to be c...
github.com
handy.h: Add void * casts to memEQ, memNE · Perl/perl5@73bd2ef
This change is to allow these macros to be called without having to do casting in the call.
[perl5] github.com/Perl/perl5/com… Karl Williamson - mktables: Make Turkic 'I' chars problematic In a Turkic locale, these are problematic ...
github.com
mktables: Make Turkic 'I' chars problematic · Perl/perl5@77d933a
In a Turkic locale, these are problematic because their mappings cross the 255/256 boundary. This change has the side effect of causing U+307 to be added to the problematic list, and it normally r...
[perl5] github.com/Perl/perl5/com… Chris 'BinGOs' Williams - Update Encode to CPAN version 3.00 [DELTA] $Revision: 3.00 $ $Date: 2019/01...
github.com
Update Encode to CPAN version 3.00 · Perl/perl5@bbe6f20
[DELTA] $Revision: 3.00 $ $Date: 2019/01/31 04:51:32 $ ! Encode.pm VERSION bumped to 3.00 to make PAUSE happy 2.100 2019/01/31 04:26:40 ! Encode.xs MANIFEST + t/xml.t Pulled: Do not acces...
United States Trends
- 1. Brown University 31.2K posts
- 2. Arsenal 204K posts
- 3. #ThankYouCena 132K posts
- 4. #AEWCollision 6,403 posts
- 5. Syria 357K posts
- 6. ISIS 64.7K posts
- 7. #ArmyNavy 4,062 posts
- 8. Claudio 13.4K posts
- 9. Wolves 89.4K posts
- 10. #TheFutureIsTeal 1,242 posts
- 11. #SNME 44.4K posts
- 12. Sharks 8,883 posts
- 13. Blanca 22.7K posts
- 14. Arteta 21.1K posts
- 15. Rhode Island 15.6K posts
- 16. John Cena 158K posts
- 17. Horvath N/A
- 18. JEBBY N/A
- 19. Saka 58.9K posts
- 20. Gyokeres 22K posts
Something went wrong.
Something went wrong.