Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove emacs/cperl-mode.el and helpers | Jan Dubois | 2010-04-21 | 4 | -10727/+0 |
| | | | | http://www.nntp.perl.org/group/perl.perl5.porters/2010/03/msg158079.html | ||||
* | Update PerlStdIOGets() signature | Jan Dubois | 2010-04-21 | 2 | -5/+5 |
| | | | | | | Brings it in line with the rest of the PerlStdIO* functions that accept parameters in the same order as the corresponding PerlSIO_* macros. See also commit ecc880cc. | ||||
* | Fix PerlSIO_fputc() and PerlSIO_fputs() signatures | Jan Dubois | 2010-04-21 | 3 | -10/+10 |
| | | | | | | | | | They should have the same prototype as in stdio. This "proper fix" replaces the 5.12.0 compatible fix in commit 634b482, but cannot be integrated into 5.12.1 because it breaks binary compatibility. See also http://rt.perl.org/rt3/Public/Bug/Display.html?id=72704 | ||||
* | XSUB.h is supposed to redefine fgets under PERL_IMPLICIT_SYS, but doesn't. | Jan Dubois | 2010-04-21 | 1 | -0/+1 |
| | | | | | See also http://rt.cpan.org/Public/Bug/Display.html?id=55049 with workaround in http://code.google.com/p/perl-devel-nytprof/source/detail?r=1168 | ||||
* | Apply minimal patch for Perl bug 72704. | Jan Dubois | 2010-04-21 | 1 | -2/+2 |
| | | | | | | | | | Arguments to fputc() and fputs() are reverted on Windows. This is not the optimal patch, but will be backwards compatible with what is in 5.12.0. For the "correct" patch please see http://rt.perl.org/rt3/Public/Bug/Display.html?id=72704 | ||||
* | Remove rendundant CPAN key | Gisle Aas | 2010-04-21 | 1 | -135/+7 |
| | |||||
* | follow up fix for fd69380d5d5b95ef16e2521cf4251b34ee0ce151 | David Mitchell | 2010-04-21 | 2 | -1/+3 |
| | | | | | | | The original fix for tied elements losing magic had a bug that was masked by a bool casting issue. Once the casting was fixed, the bug surfaced: elements of @+ lost their values when returned from a sub. By removing the TEMP flag from the regdatum PVLV, we force it to be copied when returned. | ||||
* | Ignore the /UU directory that exists during ./Configure | Rafael Garcia-Suarez | 2010-04-21 | 1 | -0/+3 |
| | |||||
* | remove bool* cast from SAVEBOOL | David Mitchell | 2010-04-21 | 1 | -1/+1 |
| | | | | | SAVEBOOL() should only be used on variables of type bool; casting pointers to variables of other types into bool* is just wrong. | ||||
* | Fix [perl #74542] 5.12.0 crash on diverse platforms | Rafael Garcia-Suarez | 2010-04-21 | 1 | -1/+2 |
| | | | | | | Filetest ops don't always expect an op on the stack, so we should use TOPs only if we're sure that we're not stat'ing the _ filehandle. This is indicated by OPf_KIDS (as checked in ck_ftst). | ||||
* | Remove Locale-Codes internals from core | Steffen Mueller | 2010-04-21 | 12 | -2316/+2 |
| | | | | | | These (and the examples) don't have to be shipped with core perl. By not shipping them, we can trivially make sure that they won't be erroneously installed either. | ||||
* | Revert "GitHub's mirror is now at mirrors/perl, not github/perl" | H.Merijn Brand | 2010-04-21 | 1 | -2/+2 |
| | | | | This reverts commit f9bcfeacc119e37fd70816a2cb4678fded53e8d1. | ||||
* | add TODO test for #74484 trie leak | David Mitchell | 2010-04-21 | 1 | -1/+29 |
| | | | | | Also add leak_expr function to svleak.t to test an expression for leakage rather than a whole sub | ||||
* | GitHub's mirror is now at mirrors/perl, not github/perl | Ãvar Arnfjörð Bjarmason) (via RT | 2010-04-21 | 1 | -2/+2 |
| | | | | | | | | | | | # New Ticket Created by (Ævar Arnfjörð Bjarmason) # Please include the string: [perl #74532] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=74532 > From: Ævar Arnfjörð Bjarmason <avar@cpan.org> Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl> | ||||
* | Update Locale::Codes to 3.12 | Steffen Mueller | 2010-04-21 | 53 | -3233/+29532 |
| | | | | | | We're skipping inclusion of some files such as the unused Build.PL, INSTALL, etc. cpan/Locale-Codes/internal/* should probably also not be included in perl core. | ||||
* | Update Steffen Mueller's email address in AUTHORS | Steffen Mueller | 2010-04-21 | 1 | -1/+1 |
| | |||||
* | Add contact information for Sullivan Beck | Steffen Mueller | 2010-04-21 | 1 | -2/+3 |
| | | | | | ... and mark him responsible for Locale::Codes, which is now "upstream => cpan" | ||||
* | Make the Module::CoreList function API consistent | Chris Williams | 2010-04-21 | 1 | -4/+10 |
| | | | | | | | | Some functions could only be called with class method type syntax. Other functions could only be called with normal sub syntax. This makes the API consistent, functions can be called with either syntax. | ||||
* | Correct spaces in MANIFEST. | Nicholas Clark | 2010-04-21 | 1 | -1/+1 |
| | |||||
* | Fix MANIFEST by adding new file | Steffen Mueller | 2010-04-20 | 1 | -0/+1 |
| | | | | | 387b6f8d0cc8df27b7a577cf8a47f25b089895e4 added new file to cpan/ExtUtils-ParseXS without adding it to MANIFEST. | ||||
* | Upgrade Scalar-List-Utils to 1.23 from CPAN | Steffen Mueller | 2010-04-20 | 10 | -26/+32 |
| | |||||
* | Document the INCLUDE_COMMAND XS directive | Steffen Mueller | 2010-04-20 | 1 | -1/+17 |
| | | | | | ExtUtils::ParseXS has recognized the INCLUDE_COMMAND directive as a smarter replacement for "INCLUDE: perl -e ... |" since version 2.21_01. | ||||
* | Upgrade ExtUtils::ParseXS to 0.2205 | Steffen Mueller | 2010-04-20 | 6 | -26/+171 |
| | |||||
* | Remove Class::ISA from the core distribution. Get it from CPAN now. | Nicholas Clark | 2010-04-20 | 6 | -385/+0 |
| | |||||
* | Remove Pod::Plainer from the core distribution. Get it from CPAN now. | Nicholas Clark | 2010-04-20 | 4 | -170/+0 |
| | |||||
* | Remove Shell from the core distribution. Get it from CPAN now. | Nicholas Clark | 2010-04-20 | 4 | -348/+0 |
| | |||||
* | Remove Switch from the core distribution. Get it from CPAN now. | Nicholas Clark | 2010-04-20 | 11 | -1650/+0 |
| | |||||
* | create perl5131delta | Leon Brocard | 2010-04-20 | 12 | -36/+309 |
| | |||||
* | Add 5.13.0 to perlhistv5.13.0 | Leon Brocard | 2010-04-20 | 1 | -0/+1 |
| | |||||
* | Update to final content for release | Leon Brocard | 2010-04-20 | 1 | -198/+49 |
| | |||||
* | Update Module::CoreList for 5.13.0 | Leon Brocard | 2010-04-20 | 3 | -35/+669 |
| | |||||
* | [rt.cpan.org #56740] Format Perl versions >= 5.6.0 as X.Y.Z | Michael G Schwern | 2010-04-20 | 1 | -20/+61 |
| | | | | | | | Decimal style Perl version numbers are increasingly awkward. 5.01 or 5.010000 is hard to equate with 5.10.0. It would be easier to read if Module::CoreList formatted version numbers from 5.6 onward as dotted versions to match how they are presented elsewhere. | ||||
* | Don't show aliased perl version numbers twice in corelist -a output | Rafael Garcia-Suarez | 2010-04-20 | 1 | -1/+1 |
| | | | | (bug [rt.cpan.org #56739]) | ||||
* | Typo fix in version number alias 5.013 | Rafael Garcia-Suarez | 2010-04-20 | 1 | -1/+1 |
| | |||||
* | Module::Pluggable has upstream => cpan | Steffen Mueller | 2010-04-20 | 1 | -1/+1 |
| | | | | According to Simon Wistow. | ||||
* | Replace mention of Switch.pm with given/when | chromatic | 2010-04-19 | 1 | -4/+3 |
| | |||||
* | Add another alias for Robin Barker | Leon Brocard | 2010-04-19 | 1 | -0/+1 |
| | |||||
* | Spaces not tabs | Leon Brocard | 2010-04-19 | 1 | -2/+2 |
| | |||||
* | Bump version number EU::MM is "first-come" so we have forked it | Leon Brocard | 2010-04-19 | 1 | -1/+1 |
| | |||||
* | Bump version due to d97c33b505dd45c052a8bf42014917701b4502a5 | Leon Brocard | 2010-04-19 | 1 | -1/+1 |
| | |||||
* | Bump version due to 255fdf19250671082618dae106a246f12379dbe6 | Leon Brocard | 2010-04-19 | 1 | -1/+1 |
| | |||||
* | Bump version number EU::MM is "first-come" so we have forked it | Leon Brocard | 2010-04-19 | 1 | -1/+1 |
| | |||||
* | Document prctl() via $0 assignment (7636ea95c5) in perldelta | Ævar Arnfjörð Bjarmason | 2010-04-19 | 1 | -0/+9 |
| | |||||
* | Add =head2 to the perldelta change in da76b8593e | Ævar Arnfjörð Bjarmason | 2010-04-19 | 1 | -0/+2 |
| | |||||
* | clarification of multi-bracket format | Ricardo Signes | 2010-04-19 | 2 | -2/+20 |
| | |||||
* | Possible undefined behaviour, spotted by gcc 4.5.0 and HP's updated compiler. | Nicholas Clark | 2010-04-19 | 1 | -1/+1 |
| | |||||
* | Revert "Documentation tweaks to Text::Tabs" | Gisle Aas | 2010-04-19 | 1 | -12/+2 |
| | | | | | | | This change was reported upstream in <https://rt.cpan.org/Ticket/Display.html?id=56699>. Committing it directly to blead was a mistake. This reverts commit f6e2320c520b8d610a864cd42aece1f0df2db895. | ||||
* | Let the cmdVERSION usage message expand $0 | Gisle Aas | 2010-04-18 | 1 | -1/+1 |
| | | | | It makes more sense than literally printing "usage: $0 ..." | ||||
* | Documentation tweaks to Text::Tabs | Gisle Aas | 2010-04-18 | 1 | -2/+12 |
| | |||||
* | Bring Porting/Maintainers in sync with reality regarding Scalar-List-Utils | Steffen Mueller | 2010-04-18 | 1 | -1/+1 |
| |