summaryrefslogtreecommitdiff
path: root/pod
Commit message (Collapse)AuthorAgeFilesLines
* update perldelta for 5.18.2Ricardo Signes2013-11-201-323/+25
|
* perldelta for 89c16a74d5f.Craig A. Berry2013-09-281-3/+4
|
* document fixing of #119927 (localizing $\) in 5.18.0Ricardo Signes2013-09-231-0/+5
|
* perldelta for 0e903f68eeTony Cook2013-09-111-1/+6
|
* add new perldeltaRicardo Signes2013-08-124-94/+498
|
* perlhist: update dates for 5.18.1 in light of RC3Ricardo Signes2013-08-081-1/+2
|
* perldelta: mention v5.16, not v5.17, as previous versionRicardo Signes2013-08-081-2/+2
| | | | Thanks for the report, SHIRAKATA Kentaro.
* update perlhist and patchlevel for v5.18.1-RC2Ricardo Signes2013-08-031-0/+1
|
* perlhist: add 5.18.1!Ricardo Signes2013-08-031-0/+2
|
* perldelta: remove a leftover XXX sectionRicardo Signes2013-08-031-5/+0
|
* perldelta: fix module updates sectionRicardo Signes2013-08-031-1/+11
|
* perlhist: import the latest perlhist from bleadRicardo Signes2013-08-011-11/+15
|
* perldelta: remove sections we will not needRicardo Signes2013-08-011-224/+0
|
* perldelta: perldelta for /[#]/ and /(?[...])/ changesRicardo Signes2013-08-011-0/+11
|
* perldelta: hints updates from 4b985f1 and 9de5f95Ricardo Signes2013-08-011-2/+7
|
* perldelta: Digest::SHA fix in 79fe145Ricardo Signes2013-08-011-1/+1
|
* perldelta: the easy pre-editing before final checksRicardo Signes2013-08-011-89/+24
|
* perldelta: add a missing "=" from a Pod directiveRicardo Signes2013-08-011-1/+1
|
* perldelta: deep recursion warnings (07b2687d2/#118521)Father Chrysostomos2013-07-271-1/+5
|
* perldelta for bdbfc51a7b (undef constant my sub)Father Chrysostomos2013-07-271-0/+5
| | | | (cherry picked from commit 07a522a526321341d2a83a852eda7f6fecb333c9)
* perldelta for #118305/88dbe4aFather Chrysostomos2013-07-271-0/+5
| | | | (cherry picked from commit 81d3ed5a0fa49c09ac57f7edc0917f345ff6b160)
* perldelta for lexsub syntax errors (3a74e0e282c)Father Chrysostomos2013-07-271-0/+5
| | | | (cherry picked from commit 3221bc400f3da87f0d721c2bf3501051fac946ea)
* perldelta for two lexsub fixesFather Chrysostomos2013-07-271-0/+10
| | | | (cherry picked from commit 81748522aff12edb368615e9512781d00a2d5d5b)
* update perldelta with recent cherry-picksDavid Mitchell2013-06-151-0/+26
|
* Ensure that the IV in struct pmop (for ithreads) is aligned properly.Nicholas Clark2013-06-151-1/+5
| | | | | | | | | | | | | | | | | | | | | | Regression in 5.18.0 cherry-picked from c2a50ddb1bed657609ef5e85c7ac5c0bfcaa2c9a The members of struct pmop vary between ithreads and non-ithreads builds. For ithreads, an IV is used for op_pmoffset. For 32 bit platforms built with -Duse64bitint, IVs are 64 bits, but pointers (and all other members of all OP structures) are 32 bits, hence on 32 bit platforms OP structure sizes can be an odd multiple of 4 bytes. Since the swap to the slab allocator, this is causing problems on architectures where 8 byte IVs have to be 8 byte aligned, notably sparcs. The long-term fix is to replace the IV with an appropriate 32 bit type, as it is being used for an array index. However, for maint-5.18 we need a work around which doesn't change the public headers and ideally doesn't impose a large speed or memory penalty. Hence for now, simply avoid using the slab allocator when allocating a struct pmop. Only do this for 32 bit platforms build with 8 byte IVs and ithreads. This is the interim fix for RT #118055.
* perldelta for debugger @_ fixRicardo Signes2013-06-101-0/+5
|
* perldelta for #117947Father Chrysostomos2013-06-051-0/+7
|
* update link for DTrace user guideRicardo Signes2013-05-311-3/+4
| | | | (cherry picked from commit d2a68ca8e9f23a357624176e0b4b7a3d63913441)
* correct example for turning of experimental warningsRicardo Signes2013-05-301-2/+2
| | | | | Original patch from Thomas Klausner <domm@plix.at>, tweaked with a suggestion by Karen Etheridge <perl@froods.org>.
* Fix the man/perldoc/doc command in the debugger.Nicholas Clark2013-05-261-0/+6
| | | | | This was accidentally broken by commit c7b0c61d36b24841. (cherry picked from commit b019bbd28397aba60a9673fa89dded4500c6c783)
* add new perldelta for 5.18.1Ricardo Signes2013-05-253-3519/+3927
|
* final version and perlhist update for 5.18.0v5.18.0Ricardo Signes2013-05-171-0/+1
|
* update perlexperimentSebastien Aperghis-Tramoni2013-05-171-78/+104
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - fixed a typo (%H instead of %^H) - removed mention of Unicode support, which is so deep that I doubt that it could ever be removed - added the following items to the "Current experiments" section - alloccopstash - cop_store_label - gv_fetchmethod_*_flags - op_scope - op_lvalue - Smart match (~~) - Lexical $_ - Array and hash container functions accept references - Regular Expression Set Operations - moved the following items to the "Accepted features" section - fork() emulation - Weak references - Internal file glob - 64-bit support - die accepts a reference - DB module - moved the following items to the "Removed features" section - GetOpt::Long Options - 5.005-style threading - Test::Harness::Straps - perlcc - Assertions - The pseudo-hash data type I tried to add the corresponding Perl versions of when features were added and accepted or removed, but used the stable versions as I searched in the perldelta's.
* fix wrong tenseSebastien Aperghis-Tramoni2013-05-171-1/+1
|
* perldelta: document known failure on HP-UX 11.00Ricardo Signes2013-05-161-1/+6
|
* bump patchlevel and perlhist for RC4v5.18.0-RC4Ricardo Signes2013-05-151-0/+1
|
* perldelta: restate the changes to ${x} versus $xRicardo Signes2013-05-151-5/+6
| | | | | Credit for improvements made in this commit to to khw. Blame for anything else goes to rjbs.
* perldelta: Clarify removal vs deprecation of modulesAristotle Pagaltzis2013-05-151-10/+22
|
* perldelta: Use 'Here doc' consistently sans dashKarl Williamson2013-05-151-3/+3
| | | | This corresponds to perldiag, and was suggested by Zsbán Ambrus.
* Fix typo in perldeltaKarl Williamson2013-05-151-1/+1
| | | | Spotted by Zsbán Ambrus
* perldelta clarificationZsbán Ambrus2013-05-151-4/+4
|
* expand documentation of the \cK changeRicardo Signes2013-05-151-2/+17
|
* perldelta: add another hash overhaul cross referenceRicardo Signes2013-05-151-0/+5
|
* Clarified perldelta entry for UID/GID magic variablesLeon Timmermans2013-05-151-2/+15
|
* perldelta: various fixes suggested by Dave MitchellRicardo Signes2013-05-151-15/+3
|
* perldelta: remove a literally incorrect "literal"Ricardo Signes2013-05-151-1/+1
|
* perldelta: collapse a bit of vertical spaceRicardo Signes2013-05-141-8/+5
|
* perldelta: clarify the deprecation of non-PerlIO perlRicardo Signes2013-05-141-6/+8
|
* Spelling correction.James E Keenan2013-05-141-1/+1
|
* perldelta: add obituary for AMORETTERicardo Signes2013-05-141-1/+10
|