summaryrefslogtreecommitdiff
path: root/pod/perl5110delta.pod
Commit message (Collapse)AuthorAgeFilesLines
* PATCH: minor typo cleanup of pod/ directoryTom Christiansen2010-01-051-1/+1
| | | | | | | | | | | | | | These are all in the pod/ directory, and only the first is a code fix. There was also a single lingering ISO 8859-1 encoding that missed the UTF-8 upconvert. The rest are cleanups for typos, some of which seem to have been around for a rather long time: spelling errors, incorrect possessives, and extra, missing, or duplicated words. If you actually read through, I bet you'll realize what sparked this. :) --tom Signed-off-by: Abigail <abigail@abigail.be>
* Correcting mistaken description of 'delete local' in perl5110deltaJesse Vincent2009-10-041-1/+1
| | | | Reported by nothingmuch++ and rjbs++
* Typo fixes in perldeltaJesse Vincent2009-10-031-2/+2
|
* podchecker nits in perldelta fixedJesse Vincent2009-10-031-10/+6
|
* Removed tedious, redundant, incorrect module update entries from perl5110deltaJesse Vincent2009-10-021-651/+6
|
* copyediting perldeltaJesse Vincent2009-10-021-8/+5
|
* perl5110delta.pod now passes podcheckerJesse Vincent2009-10-021-32/+65
|
* Update from Robin Barker to correct perldelta and Maintainers.pl for Pod-PlainerJesse Vincent2009-10-021-2/+2
|
* Note that the CPAN/CPANPLUS side of deprecating modules from core is still TODONicholas Clark2009-09-301-0/+3
|
* Class::ISA and Shell are also deprecated from core.Nicholas Clark2009-09-301-0/+8
|
* Note 3 internals changes that need describing.Nicholas Clark2009-09-301-0/+12
|
* Removed todo sectionJesse Vincent2009-09-301-25/+0
|
* Removed a duplicated entryJesse Vincent2009-09-301-6/+1
|
* Perl 5.11 delta is now up to dateJesse Vincent2009-09-301-59/+18
|
* Dual life modules maintained in core are in dist/ not ext/Nicholas Clark2009-09-301-1/+1
|
* Removal of a bunch of changes that don't merit perldelta integrationJesse Vincent2009-09-301-191/+9
|
* Further perldelta scrubbingJesse Vincent2009-09-301-223/+46
|
* More perldelta rototilling.Jesse Vincent2009-09-301-101/+77
|
* First pass through the changelog to get the perldelta current.Jesse Vincent2009-09-251-2/+291
| | | | | I hope to copyedit later today, but I think I've removed most of the chaff without hitting the wheat.
* Note that Pod::Plainer is upgraded, and deprecated from core.Nicholas Clark2009-09-151-0/+23
|
* Some POD and spelling fixesRafael Garcia-Suarez2009-09-141-7/+7
|
* Document the mro improvments.Nicholas Clark2009-09-141-0/+9
|
* Some copy editing tweaks - C<> around code, and Perl_* on C function names.Nicholas Clark2009-09-141-12/+12
|
* Describe the effects of the migration of dual life modules from lib to ext.Nicholas Clark2009-09-141-15/+18
|
* Acknowledge that Dijkmat BV funded the TPF grant.Nicholas Clark2009-09-041-6/+2
| | | | Remove 5.10.1 specific statement that isn't right for 5.11.0.
* update perlre and perldelta to document change in behaviour of \w and \d and ↵Yves Orton2009-09-021-0/+58
| | | | POSIX charclasses
* Note the change to Socket in perldelta.Rafael Garcia-Suarez2009-08-261-1/+4
|
* Purge 3 items of documentation change, which are insufficiently noteworthy.Nicholas Clark2009-08-251-6/+0
|
* Syle nit - we're not marking things (XS).Nicholas Clark2009-08-251-3/+3
|
* Tidy up some more Pod nits.Nicholas Clark2009-08-251-6/+6
|
* Added two removed platforms to the Perl 5.11.0 deltaJesse Vincent2009-08-241-0/+8
|
* Add an encoding line, as the file is in UTF-8.Nicholas Clark2009-08-241-0/+2
|
* Pod copy editing - whitespace cleanup, and F<>/C<> corrections.Nicholas Clark2009-08-241-17/+8
|
* Note that File::Copy is actually at 2.16, and that cp needs describing.Nicholas Clark2009-08-241-1/+3
|
* constant has been upgraded to 1.19. Describe the improvements.Nicholas Clark2009-08-241-1/+2
|
* The attrs pragma has been removed, not upgraded.Nicholas Clark2009-08-241-1/+2
|
* Correct some 5.10.1s that should be 5.11.0, and one 5.10.2 to 5.11.1.Nicholas Clark2009-08-241-4/+4
|
* Note that the smartmatch changes in 5.11.0 are the same as in 5.10.1.Nicholas Clark2009-08-241-1/+4
|
* Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into bleadJesse Vincent2009-08-241-0/+6
|\ | | | | | | | | * 'blead' of ssh://perl5.git.perl.org/gitroot/perl: Note that linearising C3 MRO is now 40% faster for single inheritance.
| * Note that linearising C3 MRO is now 40% faster for single inheritance.Nicholas Clark2009-08-241-0/+6
| |
* | More work toward a usable 5.11.0 delta fileJesse Vincent2009-08-241-5/+461
|/
* Forward ported perl 5.10.1 changes into perl5110delta.pod per nicholasJesse Vincent2009-08-241-19/+1575
|
* Forbid labels with keyword namesRafael Garcia-Suarez2009-07-291-0/+12
|
* perldelta entry noting when -C is now allowed on the #! line.Father Chrysostomos2009-07-261-0/+7
|
* Document the yada yada operator in perldeltaRafael Garcia-Suarez2009-07-221-0/+6
|
* Describe changes to Carp and Carp::HeavyRafael Garcia-Suarez2009-07-161-0/+11
|
* Make kill() fatal for non-numeric pidsDavid Golden2009-07-091-0/+7
| | | | | | | | | | | | | | | | | | As the debate over the best way to deal with floating point pids stalled, this is just for non-numeric, which at least squashes the bug even if it's not the Platonic ideal for everyone. It also doesn't address overloaded objects that might not have IV, NV or PV appropriately set, but the approach mirrors what is done elsewhere in doio.c so I recommend applying this patch now and fixing the problem of overloaded objects at some other time when it can be done more globally, either through an improvement or replacement of looks_like_number Also updated POD for kill when process is 0 or negative and fixed Test-Harness tests that used kill with a string pid. (Test-Harness test fix also submitted upstream)
* Mention in perldelta that "use 5.011" enables stricturesRafael Garcia-Suarez2009-07-081-0/+13
|
* Better description for the changes about the range operator in when()Rafael Garcia-Suarez2009-06-251-3/+13
| | | | (pointed out by Paul Fenwick)
* Clarifications to the perldelta notes on smart matchRafael Garcia-Suarez2009-06-241-1/+3
| | | | (pointed out by Damian)