This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl5.git
2013-07-31 Nathan TrapuzzanoRemove semicolon from inline TYPEMAP in perlxstut example.
2013-07-31 Karl Williamsonregcomp.c: Fix yet another C89 problem
2013-07-30 Karl Williamsonregcomp.c: Properly declare variable with C89
2013-07-30 David MitchellRT #118213: handle $r=qr/.../; /$r/p properly
2013-07-30 Karl Williamsonregcomp.c: Remove extraneous debug info
2013-07-30 Karl Williamsonregcomp.c: White-space only
2013-07-30 Karl Williamsonregcomp.c: Remove redundant code
2013-07-30 Karl Williamsonregexec.c: Add, clarify comments
2013-07-30 Karl Williamsonregcomp.c: Change Debug output of char classes
2013-07-30 Karl Williamsonregcomp.c: Debug output clearer ranges
2013-07-30 Karl Williamsonregcomp.c: White-space only
2013-07-30 Karl Williamsonregcomp.c: Change debug output to use \t, etc instead...
2013-07-30 Karl Williamsonregcomp.c: Extract duplicated code into single fcn
2013-07-30 Karl WilliamsonRegen t/porting/known_pod_issues.dat.
2013-07-30 Karl Williamsonregcomp.c: Fix potential scalar leak
2013-07-30 Karl Williamsonregcomp.c: Change #ifdef
2013-07-30 Andy DoughertyMention the 'make clean' makefile target [perl #38307].
2013-07-30 Steve HayRemove four Module-Build files which were removed in...
2013-07-30 Steve HayUpgrade Config-Perl-V from 0.18 to 0.19
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
next