This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl5.git
2013-07-30 Father ChrysostomosSkip trailing constants when searching pads
2013-07-30 Steve HayNote that five new meta/pod tests are excluded from...
2013-07-30 H.Merijn BrandConfig-Perl-V 0.19 released
2013-07-30 Nicholas ClarkNo need to prefix $(LDLIBPTH) when running $(CC) to...
2013-07-30 Steve HayUpdate Socket from 2.010 to 2.011
2013-07-30 Tony Cook[perl #118525] make it work on threaded builds
2013-07-29 Tony Cookperldelta for 486b1e7f0
2013-07-29 Tony CookCvGV is no longer a simple struct member access
2013-07-29 James E KeenanDocument $DynaLoader::dl_dlext, per sisyphus++.
2013-07-29 Steve HayAdd Aristotle to the list of The Keepers of the Pumpkin
2013-07-29 Tony CookPhilip Boulain is now a perl AUTHOR, and bump a version
2013-07-29 Philip BoulainReap child in case where exception has been thrown
2013-07-29 Colin KuskieRefactor ext/Pod-Functions/Functions_pm.PL to use Test...
2013-07-29 Tony Cook[perl #52000] use PL_exit_flags in the test so it works...
2013-07-29 Tony Cook[perl #52000] Warn/abort on attempted perl exit
2013-07-29 Tony Cook[perl #52000] add perldiag entries for the new warnings
2013-07-29 Tony CookJohn Gardiner Myers is now a perl AUTHOR
2013-07-29 John Gardiner... [perl #52000] Warn/abort on attempted perl exit
2013-07-29 Tony Cook[perl #114964] Correct 'ref' func POD to fix bad behavi...
2013-07-29 Tony Cookmention reftype too
2013-07-29 Tony CookBrendan Byrd is now a perl AUTHOR
2013-07-29 Brendan ByrdCorrect 'ref' func POD to fix bad behavior around ...
2013-07-29 Daniel Dragancomments only, explain the different ONE_AT_A_TIME...
2013-07-28 Father Chrysostomosperldelta for 2f222bbd/#119051 (\&$glob crashing)
2013-07-28 Father Chrysostomos[perl #119055] Make qq with no vars read-only
2013-07-28 Father ChrysostomosExempt clang from -Wunused-value when run as cc
2013-07-28 Father Chrysostomos[perl #119043] Exempt shared hash key consts from ro
2013-07-28 Father Chrysostomos[perl #119045] Make list constant mutable again
2013-07-28 Father Chrysostomos[perl #119051] Fix crash with \&$glob_copy
2013-07-28 David Mitchell[MERGE] refactor pp_match(), pp_subst(), regexec()
2013-07-28 David Mitchellregexec(): add quick-fail test for anchored \G
2013-07-28 David Mitchellregexec: swap ganch setting and gofs offsetting
2013-07-28 David Mitchellfix COW match capture optimisation
2013-07-28 David Mitchellregexec(): avoid uninit use of var
2013-07-28 David Mitchellfix /test_bootstrap.t under -DPERL_NO_COW
2013-07-28 David Mitchellfix build under -DPERL_NO_COW
2013-07-28 David Mitchellregexec(): access extflags directly
2013-07-28 David Mitchellregexec(): tidy up ganch-setting code
2013-07-28 David Mitchellregexec(): merge the 2 RXf_GPOS_SEEN setup blocks
2013-07-28 David Mitchellregexec(): simplify RXf_ANCH_GPOS pos calc
2013-07-28 David Mitchellregexec(): use regtry(&s) not regtry(&startpos)
2013-07-28 David Mitchells/.(?=.\G)/X/g: refuse to go backwards
2013-07-28 David Mitchellpp_subst: don't use REXEC_COPY_STR on 2nd match
2013-07-28 David Mitchellpp_subst: combine 3 small elsif blocks into 1
2013-07-28 David Mitchellpp_subst: remove one use of 'm' local var
2013-07-28 David Mitchellpp_subst: reduce scope of 'i' variable
2013-07-28 David Mitchellpp_subst: reduce scope of 'm' var
2013-07-28 David Mitchellpp_subst: set/use s,m vars near where they're used
2013-07-28 David Mitchellpp_subst: reduce scope of 'd' variable
2013-07-28 David Mitchellpp_subst: cosmetic re-arrangement of vars
2013-07-28 David Mitchellregexec(): fix ganch and till settings
2013-07-28 David Mitchellregexec(): skip second intuit() call
2013-07-28 David Mitchellfix intuit_start() with \G
2013-07-28 David Mitchellenable intuit under anchored \G, and fix a bug
2013-07-28 David Mitchellregexec_flags(): remove vestigial scream support
2013-07-28 David Mitchellregexec_flags(): keep stringarg constant
2013-07-28 David Mitchellregexec_flags(): use result of intuit_start()
2013-07-28 David Mitchellpp_match: simplify pos()-getting code
2013-07-28 David Mitchellregexec: handle \G ourself, rather than in callers
2013-07-28 Yves Ortonfix 114884 positive GPOS lookbehind regex substitution...
2013-07-28 David Mitchellpp_match(): don't set REXEC_IGNOREPOS on 1st iter
2013-07-28 David Mitchellpp_match(): stop setting $-[0] before regexec()
2013-07-28 David Mitchellpp_match: avoid setting $+[0]
2013-07-28 David Mitchellpp_match(): eliminate unused t variable
2013-07-28 David Mitchellpp_match(): skip passing gpos arg to regexec()
2013-07-28 David Mitchelladd some basic floating /\G/ tests
2013-07-28 David Mitchellfix /.\G/ under threading
2013-07-28 David Mitchellskip creating new capture COW SV if possible
2013-07-28 David Mitchellmake Perl_reg_set_capture_string static
2013-07-28 David Mitchelladd intuit-only match to s///
2013-07-28 David Mitchellmove intuit call from pp_match() into regexec()
2013-07-28 David Mitchellmake intuit_start() handle mixed utf8-ness
2013-07-28 David Mitchellpp_match(): fix UTF* match setting
2013-07-28 David Mitchellpp_match(): intuit can handle refs these days
2013-07-28 David Mitchellpp_match(): remove ret_no label
2013-07-28 David Mitchellpp_match(): combine intuit and regexec branches
2013-07-28 David Mitchellpp_match(): refactor intuit-only code
2013-07-28 David Mitchellpp_match(): minor refactor: consolidate RETPUSHYES
2013-07-28 David Mitchellpp_match(): factor out some common code
2013-07-28 David Mitchellre-enable intuit-only matches
2013-07-28 David Mitchelladd Perl_reg_set_capture_string() function
2013-07-28 Father Chrysostomosperl5191delta: deep recursion warnings (07b2687d2/...
2013-07-26 Father Chrysostomos[Merge] Constants, inlined subs, TARGs, ...
2013-07-26 Father ChrysostomosVersion number tweaks in tests and other cleanup
2013-07-26 Father Chrysostomospad.c apidocs: Clarify use of &PL_sv_no
2013-07-26 Father ChrysostomosFix up IO::Compress tests
2013-07-26 Father ChrysostomosIncrease $XS::APItest::VERSION to 0.55
2013-07-26 Father ChrysostomosStop op freeing from interfering with sub(){42} mutability
2013-07-26 Father Chrysostomosfresh_perl.t: Make the test for #3066 more explicit
2013-07-26 Father ChrysostomosMake overloaded constants always read-only
2013-07-26 Father ChrysostomosDon’t check IS_PADCONST in pad.c:pad_alloc
2013-07-26 Father Chrysostomospad.c: Don’t copy shared hash key targets when cloning
2013-07-26 Father ChrysostomosStop shared hash key TARGs from being shared
2013-07-26 Father Chrysostomos[perl #79908] Stop sub inlining from breaking closures
2013-07-26 Father ChrysostomosMake sub(){42} return a mutable value
2013-07-26 Father ChrysostomosTweak optree_constants.t for inlined list consts
2013-07-26 Father ChrysostomosUpdate constant.pm to reflect list inlinement
2013-07-26 Father ChrysostomosInline list constants
2013-07-26 Father Chrysostomosconstant.pm: Make list constants read-only
2013-07-26 Father ChrysostomosAllow stash elems to be array refs
next