summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* add new release to perlhistv5.33.1Karen Etheridge2020-08-201-0/+1
|
* finalize perldelta for 5.33.1Karen Etheridge2020-08-201-346/+130
|
* Update Module::CoreList for 5.33.1Karen Etheridge2020-08-201-4/+54
|
* perldelta: add missing =over/=item/=back around perldebguts entryDagfinn Ilmari Mannsåker2020-08-201-0/+6
|
* regcomp.c: Silence compiler warningKarl Williamson2020-08-191-1/+1
| | | | | | | This commit goes back to using av_top_index to silence the signed/unsigned comparison warning. Other methods could have been used, but the signed variable is actually used to fetch the array index, so I decided to go this route.
* fix broken perldelta links introduced in 5238875cf10Tony Cook2020-08-201-11/+11
|
* perldelta for 3134649473, 64ca16b728, fc5f3468dc, 89341f87f9, 8a2562bec7Tony Cook2020-08-201-1/+17
|
* Use av_top_index() instead of av_tindex()Karl Williamson2020-08-196-8/+8
| | | | | | | I was never happy with this short form, and other people weren't either. Now that most things are better expressed in terms of av_count, convert the few remaining items that are clearer when referring to an index into using the fully spelled out form
* pp_ctl.c: Convert to use av_count()Karl Williamson2020-08-191-23/+23
|
* Typemap.xs: Convert to use av_count()Karl Williamson2020-08-192-2/+2
|
* mro.xs: Convert to use av_count()Karl Williamson2020-08-192-2/+2
|
* APItest.xs: Convert to use av_count()Karl Williamson2020-08-191-1/+1
|
* Hash-Util-FieldHash: Convert to use av_count()Karl Williamson2020-08-192-3/+3
|
* pp.c: Convert to use av_count()Karl Williamson2020-08-191-1/+1
|
* PERL_FILTER_EXISTS: Convert to use av_count()Karl Williamson2020-08-191-1/+1
|
* os2.c: Convert to use av_count()Karl Williamson2020-08-191-4/+3
|
* Porting/makerel: Add a create EBCDIC optionKarl Williamson2020-08-191-11/+165
| | | | | So that the .gz and .xz files can be unpacked on EBCDIC platforms without any muss or fuss
* perldelta: Add missing =item linesKarl Williamson2020-08-191-1/+3
|
* Add entry for fixing #16529Karl Williamson2020-08-191-0/+5
|
* pod/perldelta: Improve formatting for dual life modulesNicolas R2020-08-191-67/+133
|
* Add perldelta entry for perldebguts ${"_<$filename"} fixDagfinn Ilmari Mannsåker2020-08-201-0/+5
| | | | See commit 6e764e36cf6a7c109e74ca4ccafbba27a0b422cd
* perldelta: alphabetise document listDagfinn Ilmari Mannsåker2020-08-191-10/+10
|
* Note customized ExtUtils-Constant testDagfinn Ilmari Mannsåker2020-08-192-0/+5
| | | | | | Commit 67b5e820b9462a832786fae47188b044c8fd42fb adjusted the test file to avoid an indirect method call, but failed to update Porting/Maintainers.pl and t/porting/customized.dat.
* Remove obsolete custimized.dat entry for Pod-Usage testDagfinn Ilmari Mannsåker2020-08-191-1/+0
| | | | | | Commit b9ab2ffe309876b1749351c4276565e2289c82ac updated Pod-Usage to v1.70, which includes the test change, but failed to remove it from t/porting/customized.dat.
* Add perldetla entries for my_rpeep and range opNicolas R2020-08-191-0/+14
| | | | Changes for 39f7bd8a2f and f4941eebb5
* Add perldelta entries for dual life modulesNicolas R2020-08-191-0/+113
|
* add new rjbs emailKaren Etheridge2020-08-192-0/+2
|
* Add perldelta entry for Intel compiler detection fixDagfinn Ilmari Mannsåker2020-08-191-0/+5
| | | | See commit 8ffcbbbe4a4411bb0971e61a39fa2608a4ef5145
* perldelta: Note GH #18019 is fixedKarl Williamson2020-08-191-1/+1
|
* perldelta: Note more doc changesKarl Williamson2020-08-191-0/+21
|
* perldelta update for commit 3aa74965c0Karen Etheridge2020-08-191-2/+2
|
* whitespace fixes onlyKaren Etheridge2020-08-191-3/+3
|
* vms.c: Convert to use av_count()Karl Williamson2020-08-191-2/+2
|
* universal.c: Convert to use av_count()Karl Williamson2020-08-191-3/+3
|
* sv.c: Convert to use av_count()Karl Williamson2020-08-191-1/+1
|
* regcomp.c: Convert to use av_count()Karl Williamson2020-08-191-7/+7
|
* pp_sys.c: Convert to use av_count()Karl Williamson2020-08-191-1/+1
|
* pp.h.c: Convert to use av_count()Karl Williamson2020-08-191-1/+1
|
* perl.c: Convert to use av_count()Karl Williamson2020-08-191-2/+2
|
* doio.c: Convert to use av_count()Karl Williamson2020-08-191-1/+1
|
* pp_hot.c: Convert to use av_count()Karl Williamson2020-08-191-1/+1
|
* Add av_count()Karl Williamson2020-08-197-13/+44
| | | | | | | | | This returns the number of elements in an array in a clearly named function. av_top_index(), av_tindex() are clearly named, but are less than ideal, and came about because no one back then thought of this one, until now Paul Evans did.
* perldelta: Plan9 and 9front i386Nicolas R2020-08-191-10/+10
| | | | | | Relates: #17891 Add perldelta entry for Plan9 and 9front.
* massage perldelta entries for perl5db.plKaren Etheridge2020-08-191-15/+8
|
* perlguts: Mention format display modifiers for nonstandardsKarl Williamson2020-08-191-0/+5
| | | | You can print ptrdiff_t values just fine, for example
* perldelta: Note new z/OS locale categoriesKarl Williamson2020-08-191-2/+4
|
* perldelta: explain 015b02fd303c and HistItemMinLength in perl5db (#18075)Ricardo Signes2020-08-191-0/+7
|
* Add perldelta entry for ExtUtils::PL2BatLeon Timmermans2020-08-191-2/+4
|
* Add a note to perldelta about the recently-added SAVEt_HINTS_HH typePaul "LeoNerd" Evans2020-08-191-0/+9
|
* Update Pod-Usage to v1.70Nicolas R2020-08-186-29/+50
| | | | | | | | Customized patch to t/pod/testp2pt.pl is now applied upstream and part of the 1.70 release. References: 88e4265ca263642612277ef33dd08ded69e4e4c5 Upstream-URL: https://rt.cpan.org/Ticket/Display.html?id=130418