summaryrefslogtreecommitdiff
path: root/pod
Commit message (Collapse)AuthorAgeFilesLines
...
* Last minute fix, thanks SHIRAKATA KentaroSawyer X2019-05-221-5/+1
|
* add new release to perlhistSawyer X2019-05-221-19/+21
|
* Typo fixSawyer X2019-05-221-2/+2
|
* [perldelta] Typo, thanks Paul Johnson!Sawyer X2019-05-201-1/+1
|
* [perldelta] Rephrase Acknowledgements, thanks Hugo and CraigSawyer X2019-05-191-7/+5
|
* Remove selected information from non-blead-point releaseSawyer X2019-05-171-20/+19
|
* update releaseSawyer X2019-05-171-0/+1
|
* Fix to acknowledgementsSawyer X2019-05-171-1/+5
|
* Adjust perlvar doc for @INCNicolas R2019-05-161-6/+7
| | | | | | RT #134108 dot is not in @INC anymore since 5.26
* Linkify B::Debug and Locale::Codes to CPAN in a uniform waySawyer X2019-05-161-3/+5
|
* perldelta: ImprovementsKarl Williamson2019-05-161-66/+50
| | | | | This includes some small wording changes, reordering by importance, collapsing near-duplicate entries.
* [perldelta] Missing =itemSawyer X2019-05-151-0/+2
|
* Fix up perldelta in regard to Unicode versionsKarl Williamson2019-05-151-26/+11
|
* Revert "[perldelta] Merge Unicode 11.0, 12.0, and 12.1"Sawyer X2019-05-151-14/+18
| | | | This reverts commit d4c6f1162051dc6f5ddb49bb9598500047458e03.
* Revert "[perldelta] Missing 'of'"Sawyer X2019-05-151-1/+1
| | | | This reverts commit 78ccf50b87776a7a9e721f24512c10a2b7cd0f06.
* [perldelta] Missing 'of'Sawyer X2019-05-151-1/+1
|
* [perldelta] Merge Unicode 11.0, 12.0, and 12.1Sawyer X2019-05-151-18/+14
|
* minor wording changes, rt linksKaren Etheridge2019-05-141-50/+77
|
* Remove references to 5.29Sawyer X2019-05-121-21/+1
|
* WhoopsSawyer X2019-05-121-0/+1
|
* Remove symlinkSawyer X2019-05-121-1/+0
|
* Update perl.pod with 5300deltaSawyer X2019-05-121-0/+1
|
* add new release to perlhistSawyer X2019-05-111-19/+22
|
* Finalize perldeltaSawyer X2019-05-1115-3067/+1176
|
* Bump the perl version in various places for 5.30.0Sawyer X2019-05-101-3/+3
|
* perldelta for 9f300641fc6fTony Cook2019-05-091-0/+8
|
* perldelta for 9a48f2ab9670, 5a6219089f70Tony Cook2019-05-031-1/+2
|
* (perl #134046) list form system/exec/pipe open limits on Win32Tony Cook2019-05-011-1/+17
|
* Document that local-on-negative-array-index is wildly surprisingAaron Crane2019-04-271-1/+3
|
* Update Devel-PPPort to version 3.46Nicolas R2019-04-261-0/+2
| | | | | | | Update dist/Devel-PPPort after recent work from khw to provide UNICODE_REPLACEMENT Note that 3.46 is also released to CPAN.
* remove leftovers from [perl #127663]Tomasz Konojacki2019-04-261-6/+0
| | | | | | Since e0d4aead3c87ba953fb1d70678a77a45e0c9f111 we no longer have "Can't do inplace edit without backup" error, but perldiag and t/io/inplace.t didn't get the memo.
* perlguts: add some background information on op slab internalsAaron Crane2019-04-261-0/+97
| | | | | | | | | This text is a lightly-edited version of the commit message for 8be227ab5eaa23f2d21fd15f70190e494496dcbe, which is the change that introduced slab-based op allocation. I found the overview in that message to be very helpful, and it seems that it's much more useful in the repository itself than hidden away in a seven-year-old commit message.
* Update perldelta wrt Module::CoreListSawyer X2019-04-211-0/+4
|
* new perldelta for 5.29.11, even though we won't see itSawyer X2019-04-204-69/+514
|
* Update perlhistv5.29.10Sawyer X2019-04-201-0/+1
|
* Update perldelta for 5.29.10 releaseSawyer X2019-04-201-313/+36
|
* typoKaren Etheridge2019-04-201-1/+1
|
* Create Strtod()Karl Williamson2019-04-191-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | This commit creates my_strod() and a synonym, Strtod(), to emulate strtod() using the most precise function known to us that is available on the platform. strtod() is not in K&R, but is in C90, so atof() may be silently substituted instead on those few platforms without it. This function also correctly handles locale issues, such as if the radix character should be a dot or comma (or something else) depending on the parent perl code is using locale or not, and which locale. The symbol Perl_strtod continues to be defined on platforms which have some version of strtod(), for backward compatibility, and can be called as a function (or rather macro) but most applications should just use Strtod() and not sweat the details. This commit also fixes the problems with the prior commit: commit 4ac6fab20b8950ee14756c6f2438809c572082cd Author: Karl Williamson <khw@cpan.org> Date: Mon Apr 15 11:10:31 2019 -0600 PATCH: [perl #133945] Perl_strtod failures This commit wraps Perl_strtod() in macros that cause the proper radix character to be used.
* Import perl5282delta.podSteve Hay2019-04-192-0/+200
|
* 5.28.2 todaySteve Hay2019-04-191-0/+1
|
* modernize Exporter usage in perlmod module templateDan Book2019-04-151-13/+10
| | | | TonyC: placate podcheck by wrapping a verbatim line.
* perldelta for 05fed879afad, 15f67d146cf1, 0a4d1779402eTony Cook2019-04-151-1/+5
|
* perlfunc: ClarifyKarl Williamson2019-04-121-2/+2
|
* Add support for VS2019 (Visual C++ 14.2)Steve Hay2019-04-091-2/+9
| | | | | | This also fixes LINK_FLAGS for VS2017 (Visual C++ 14.1): The subsystem setting was missed in the changes to add VS2017 support, which was surely just an oversight.
* Preliminary Unicode 12.1Unicode Consortium2019-04-081-1/+7
|
* Spelling correction in documentation.Brian Greenfield2019-04-081-1/+1
|
* PATCH: [perl #133988], Assertion failureKarl Williamson2019-04-051-4/+20
| | | | | | | | | | This was due to not checking that a \N{} expanded to a single code point in contexts where only that is legal. This never could have worked properly, though the assertion failure is new. The diagnostic needs to be reworded to accommodate this new case, but its too late in the 5.29 cycle to do that, so I'm changing just the description, and will reword in 5.31, [perl #133996]
* fix typoKaren Etheridge2019-04-051-1/+1
|
* 5.28.2-RC1 todaySteve Hay2019-04-051-0/+1
|
* perldelta for 4f13e4588f9a08564a56a0d6db821f2803aed09fJames E Keenan2019-03-301-0/+4
|