summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix bug introduced in 67924fd which put the key _< with an undefined value ↵Duke Leto2009-06-032-2/+8
| | | | | | | in the symbol table This patch makes sure that $filename is defined before setting the _<$filename symbol. It also adds a test which makes sure that *no* symbols have undefined values after loading perl5db.pl .
* Update CPANPLUS::Dist::Build to CPAN version 0.32Chris Williams2009-06-033-11/+16
|
* parenthesize check for a flagStepan Kasal2009-06-021-1/+1
| | | | | | | | | | | | | | | Hello, gcc warned me about a suspicious combination of ! and & Please consinder the following one-line patch. Stepan Kasal From 4b449da2aedf3b40b8f6dfa4c410d9becb33330a Mon Sep 17 00:00:00 2001 From: Stepan Kasal <skasal@redhat.com> Date: Tue, 2 Jun 2009 16:06:10 +0200 Subject: [PATCH] dump.c: parenthesize flag check Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
* Disentangling -g and -DDEBUGGING is a TODO.Nicholas Clark2009-06-021-0/+9
|
* In Perl_hv_iternext_flags(), clarify and generalise the empty hash bailout code.Nicholas Clark2009-06-021-4/+3
|
* Adjust MANIFESTRafael Garcia-Suarez2009-06-021-0/+4
|
* Merge branch 'smartmatch' into bleadRafael Garcia-Suarez2009-06-023-10/+24
|\
| * More ~~ testsRafael Garcia-Suarez2009-06-011-2/+10
| | | | | | | | Also, add a plan to those tests, for extra safety
| * Smart-match perldelta adjustmentsRafael Garcia-Suarez2009-06-011-5/+12
| |
| * Minor doc fix for the smart table legend (clarify the "Object" entry).Rafael Garcia-Suarez2009-06-011-3/+2
| |
* | Merge branch 'eumm652' into bleadRafael Garcia-Suarez2009-06-0247-337/+990
|\ \
| * | Add test boilerplate to the new MakeMaker testsRafael Garcia-Suarez2009-06-012-0/+14
| | |
| * | Upgrade to ExtUtils::MakeMaker 6.52Rafael Garcia-Suarez2009-06-0147-337/+976
| |/
* | stop git whining about trailing whitespace (picky picky..)David Mitchell2009-06-021-1/+1
| |
* | start adding new EXCLUDED and MAP entries to Maintainers.pl.David Mitchell2009-06-021-4/+162
| |
* | resync some files with their CPAN equivalents (just the trivial errors forDavid Mitchell2009-06-023-2/+6
| | | | | | | | now, like whitespace)
* | Add benchmark test for keys() on empty hashes (RT26188)Max Maischein2009-06-012-0/+92
| |
* | Fix RT26188, speed up keys() on empty hashMax Maischein2009-06-011-17/+23
| |
* | Correct test output for t/op/eval.t (missing newline)Jerry D. Hedden2009-06-011-1/+1
| |
* | Protect against spaces in build directory name when extracting .PL filesAndy Dougherty2009-06-011-1/+1
|/
* Mention Devel::NYTProf in perldebugSteffen Mueller2009-05-311-2/+3
| | | | | In the short section about profiling with Devel::DProf, we now mention that other profilers (such as Devel::NYTProf) are available from CPAN.
* Auto-complete lexicals in the debugger shellSteffen Mueller2009-05-312-5/+30
| | | | | | When typing the name of a lexical variable in the debugger shell, its name can now be tab auto-completed just like package variables. Requires PadWalker to be available. Silently skips lexicals if it's not.
* Fix casting warningRafael Garcia-Suarez2009-05-311-2/+2
| | | | (that was introduced by 9ef5ed94af)
* wrap some long FILES fields in Maintainers.plDavid Mitchell2009-05-311-51/+151
| | | | | | (just whitepsace/newline changes) Basic philosophy is now: if it all fits on one ( < 80 char) line, fine; otherwise have only one entry per line
* fix Math::BigInt, PathTools entries in Maintainers.plDavid Mitchell2009-05-311-2/+2
| | | | (botched by 002904c4e2f6cd5caebddf970e6be562946af502)
* convert Maintainers.pl from an 8 to a 4 char indentDavid Mitchell2009-05-311-1498/+1498
| | | | (to give more room for extra field I'm going to add)
* Clarify the meaning of the %Modules keys in Maintainers.pl,David Mitchell2009-05-311-5/+20
| | | | | and fix a couple of keys that don't correspond to an actual module name that you can 'use'.
* add DISTRIBUTION field to %Modules in Maintainers.plDavid Mitchell2009-05-311-0/+116
| | | | | | (note that in this initial attempt, the file version numbers are derived from the newest verions currently available on CPAN, which may not actually reflect what's bundled with blead. Later on, I'll be fixing this.)
* Maintainers.pl: rationalise distributions:David Mitchell2009-05-311-25/+11
| | | | | Cwd and File::Spec are both part of PathTools, and Math::BigFloat is part of Math-BigInt
* Maintainers.pl: there is no DB::File, and describe Text::Tabs/Wrap betterDavid Mitchell2009-05-311-2/+2
|
* Clarify perldebug documentationBram2009-05-311-2/+6
| | | | Mention what happens without Readline support.
* Silence a warning emitted by test added by last commitRafael Garcia-Suarez2009-05-311-0/+1
|
* Add test case from RT#54758.George Greer2009-05-311-1/+5
|
* Merge branch 'memleaktest' into bleadRafael Garcia-Suarez2009-05-311-3/+13
|\
| * Add regression test for [RT#63110]Rafael Garcia-Suarez2009-05-311-3/+13
| | | | | | | | This is based on a stand-alone test by Bram
* | Document test structureBram2009-05-311-0/+10
| | | | | | | | | | | | (was Re: [perl #56194] Regex: (((??{1 + $^N}))) behaves differently in 5.10.0 than in blead) Adds some basic documentation about the test structure.
* | Fix Filter::Simple entry in Maintainers.plDavid Mitchell2009-05-301-1/+2
| |
* | Nicholas says that SvREFCNT_dec should be sufficient hereRafael Garcia-Suarez2009-05-301-1/+3
| | | | | | | | (instead of marking the SV as mortal.)
* | Fix [RT#6266] -- sv_pos_u2b expects to be called with a valid character indexAlex Vandiver2009-05-302-3/+19
| | | | | | | | | | | | | | sv_pos_u2b, when utf8 position caching is enabled, treats the uoffset it is given as real, storing it away for lature use. sprintf, here, passes the byte length of the string, which causes an invalid offset to be cached.
* | Fix [RT#63110] -- two small memory leaks were introduced in 5b9c067Alex Vandiver2009-05-302-2/+5
|/
* Bump version of IPC::Open3Rafael Garcia-Suarez2009-05-301-1/+1
|
* clarified documentation about using lexical $err in open3 callSlaven Rezic2009-05-301-2/+4
|
* Spelling nitSteffen Mueller2009-05-301-1/+1
|
* Document the PERL_LOADMOD_ flagsRafael Garcia-Suarez2009-05-301-3/+3
|
* Fix [RT#66098] -- stricter checking on SvIVX exposed a lack of SvIOK checkAlex Vandiver2009-05-282-2/+8
|
* Add a guide to writing a perldelta.Nicholas Clark2009-05-282-0/+200
|
* Merge branch 'blead' of camel:/gitroot/perl into bleadRafael Garcia-Suarez2009-05-271-0/+8
|\
| * Catch interdependencies for static builds tooAndy Dougherty2009-05-261-0/+8
| |
* | Merge branch 'blead' of camel:/gitroot/perl into bleadRafael Garcia-Suarez2009-05-261-12/+66
|\ \ | |/
| * More tests for uninitialized warnings in rangesVincent Pit2009-05-261-12/+66
| |