summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* perlop: /o updateKarl Williamson2011-04-191-8/+28
|
* perllocale: Mention /lKarl Williamson2011-04-191-2/+7
| | | | Also the possibility of an undefined initial locale
* perldelta: Fix remaining confusing double double quotesKarl Williamson2011-04-191-5/+5
| | | | | C<foo"bar"> will translate into "foo"bar"" on some devices, which is confusing. Change the remaining ones to C<foo'bar'>
* perldelta encoding error spotted by tchristJesse Vincent2011-04-201-1/+1
|
* Bump patchlevel to RC1Jesse Vincent2011-04-201-1/+1
|
* Update to Known Problems, removing several previously-known problemsJesse Vincent2011-04-201-23/+7
| | | | I've verified as fixed.
* Reflowing textJesse Vincent2011-04-201-4/+5
|
* Ilmari pointed out that I incorrectly marked up some perl function()Jesse Vincent2011-04-201-7/+7
| | | | statements as C<function()>
* Update the documentation for rand() to note that it's notJesse Vincent2011-04-201-0/+7
| | | | | | | | | | cryptographically secure due to concerns that end-users are unaware of this and use it in situations where security depends on the strength of the randomness generated. I'd have been happier getting this patch in earlier in the cycle. We'd hoped to replace the RNG, but that didn't happen in time, so this doc update is the "better, still not good" fallback.
* Update Module::CoreList for 5.14.0Jesse Vincent2011-04-202-2/+670
|
* Add 5.14.0RC1 and 5.14.0 (hopeful) date to perlhistJesse Vincent2011-04-201-0/+3
|
* Started to flesh out the AUTHORS section of perldeltaJesse Vincent2011-04-201-1/+53
|
* dispatch signals when leaving an evalDavid Mitchell2011-04-192-2/+26
| | | | | | | | | | | | | | | | | | | | | | Currently PERL_ASYNC_CHECK is only called during scope exit in pp_leavetry and pp_levaeeval. This means that if the signal handler calls die, the eval won't catch it. This broke Sys::AlarmCall's test suite, which was doing the equivalent of $SIG{ALRM} = sub { die }; eval { alarm(1); select(undef, undef, undef, 10); } # expect the die to get caught and $@ set here. Because the select was the last statement in the block, PERL_ASYNC_CHECK wasn't called next until the leave_scope at the end of leavetry. See RT #88774. The simple fix is to add a PERL_ASYNC_CHECK at the top of leavetry and leaveeval.
* Missing bug number in d12b49dFather Chrysostomos2011-04-191-1/+1
|
* Correct typos in 66b4c19Father Chrysostomos2011-04-191-6/+6
|
* porting/cmp_version.t: skip threads 1.83David Mitchell2011-04-191-0/+1
| | | | | | The threads version for blead was bumped for the 5.13.11 release, but not all version numbers were bumped, so the '1.83' in 5.14.0 will be marginally different (1 line of text) than in the 5.13.11 release.
* fix blurb at top of t/porting/cmp_version.tDavid Mitchell2011-04-191-2/+3
|
* t/porting/cmp_version.t: add version skip facilityDavid Mitchell2011-04-191-0/+10
| | | | | Allow it to skip failing for particular versions of particular modules
* Removed a note about Test::Harness that was obsoleted by the release ofJesse Vincent2011-04-191-9/+0
| | | | Test::Harness 3.23
* I think I've now got all the funny quote business taken care of.Tom Christiansen2011-04-191-131/+130
| | | | I've pod-, spell-, and dupword-checked this.
* Update perldelta for push/keys changesFather Chrysostomos2011-04-181-8/+3
| | | | | • Mark it as experimental • Remove paragraphs that no longer apply
* Update perlfunc for [perl #80626]Father Chrysostomos2011-04-181-46/+47
|
* Add a test for keys $tiedFather Chrysostomos2011-04-181-1/+2
| | | | This was ‘inadvertently’ fixed with commit 7ac5715
* Make push, etc., work on tied scalarsFather Chrysostomos2011-04-182-1/+3
| | | | I broke this with commit d4fc441
* update threads::shared version in perldelta.Jesse Vincent2011-04-191-1/+1
|
* Upgrade to threads 1.83Jerry D. Hedden2011-04-194-8/+8
|
* Upgrade to threads::shared 1.37Jerry D. Hedden2011-04-192-3/+3
|
* perllocale: CorrectionsKarl Williamson2011-04-181-6/+18
| | | | | | This pod misled some people, including this author, as to the initial state of locales. This fleshes out some details, and changes some wording.
* perlrecharclass: NitsKarl Williamson2011-04-181-2/+3
|
* Perldelta patches from Ilmari and AbigailJesse Vincent2011-04-191-23/+23
|
* Fix a few pod nitsJesse Vincent2011-04-191-6/+6
|
* Make keys $scalar an lvalueFather Chrysostomos2011-04-183-0/+15
| | | | | | | | | | | | | | This does a run-time check to see whether $scalar is a hash ref, and dies if it is not. This is to keep keys \@_ consistent with keys @_. I cannot simply use OPf_MOD, since that indicates *potential* lvalue context (including subroutine args). So, instead, I take advantage of the fact that OPf_SPECIAL is always set on the LHS of an assignment (usually to indicate that local() should not erase the value).
* perlop: Update for some 5.14 changesKarl Williamson2011-04-181-5/+1
|
* perluniintro: Update for 5.14 changesKarl Williamson2011-04-181-3/+10
|
* perlunicode.pod: NitsKarl Williamson2011-04-181-2/+4
|
* perlre: Remove false statement about localesKarl Williamson2011-04-181-7/+2
|
* VMS section clean-up for perldelta.Craig A. Berry2011-04-181-34/+17
|
* perldelta editing passTom Christiansen2011-04-191-736/+750
|
* Remove ambigous warning from perldiagFather Chrysostomos2011-04-181-11/+0
| | | | This no longer happens as of commit 7ac5715.
* Make keys/value/each $scalar accept only unblessed refsFather Chrysostomos2011-04-184-95/+112
| | | | See ticket #80626.
* collapse plibpth to one line and remove trailing /Andy Dougherty2011-04-181-2/+4
| | | | | | | | | | | The recent change to hints/linux.sh, 40f026236b9959b7ad3260fedc6c66cd30bb7abc set the plibpth variable. It was supposed to set all entries on a single line, but it didn't. Do it now, and also remove trailing /'s. (The collapsing is a more robust version of the previous commit, since reverted, that davem wrote independently).
* Revert "collapse plibpth to one line"David Mitchell2011-04-181-2/+1
| | | | | | This reverts commit 55e4a474ad63535e486bd657f45b5339709cbcd3. In improved version is coming next...
* collapse plibpth to one lineDavid Mitchell2011-04-181-1/+2
| | | | | | | | The recent change to hints/linux.sh, 40f026236b9959b7ad3260fedc6c66cd30bb7abc set the plibpth variable. It was supposed to set all entries on a single line, but it didn't. Do it now,
* configpm: handle multi-line key='value\n...'David Mitchell2011-04-181-1/+2
| | | | | | | | | | | | | | | | | | | | There is old code in configpm to handle mulit-line entries in config.sh along the lines of plibpth='/lib/x86_64-redhat-linux/4.4.5/ /lib/../lib64/ /usr/lib/x86_64-redhat-linux/4.4.5/ /usr/lib/../lib64/ /lib/ /usr/lib/' which was broken, and produced Use of uninitialized value $1 warnings, and messed up the content of lib/Config_heavy.pl. We probably normally don't have multi-line entries, which is why no-one noticed it before, but 40f026236b9959b7ad3260fedc6c66cd30bb7abc has started generating the entry above.
* fix for pp.c under win32 etcDavid Mitchell2011-04-181-2/+2
| | | | | Commit d4fc4415aac96132fac5b1e43e73bcba33a41b79 added two definitions of the DEREF_PLAIN_ARRAY array; the non-GCC one had syntax errors
* Minor fixes to perldelta.podRichard Möhn2011-04-181-8/+8
| | | | | | Reviewed section "Core Enhancements". Signed-off-by: Ævar Arnfjörð Bjarmason <avar@cpan.org>
* Consistent use of 'e.g.,' in perldelta.podRichard Möhn2011-04-181-5/+5
| | | | | | | There were some places, where 'e.g.' was used without a comma. I made it consistent. Signed-off-by: Ævar Arnfjörð Bjarmason <avar@cpan.org>
* Consistent use of two spaces after full stop in perldelta.podRichard Möhn2011-04-181-38/+38
| | | | | | | There were more occurences of two spaces after full stops, so I made those two that were only one. Signed-off-by: Ævar Arnfjörð Bjarmason <avar@cpan.org>
* perldelta: typosFather Chrysostomos2011-04-181-2/+2
|
* pod/perldelta.pod: POSIX should be in all-caps (not "Posix")Ævar Arnfjörð Bjarmason2011-04-181-1/+1
|