This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Change ValidProtoString() to valid_proto_string()
[perl5.git] / pp_ctl.c
2011-07-10 Father ChrysostomosPropagate (non-)lvalue context through nested calls
2011-07-09 Father ChrysostomosS_return_lvalues: collapse duplicated code
2011-07-09 Father ChrysostomosS_return_lvalues: microöptimisation
2011-07-09 Father ChrysostomosFree temps on recursive scalar lvalue sub exit
2011-06-27 Vincent PitFix context propagation below return()
2011-06-27 Vincent PitIn leavewhen, put the SP back when returning
2011-06-27 Vincent PitMake sure break() resets the sp at its original level
2011-06-25 Vincent PitCorrectly preserve the stack on an implicit break.
2011-06-25 Vincent PitConvert pp_leave() to adjust_stack_on_leave()
2011-06-25 Vincent PitMove pp_enter() and pp_leave() with their friends in...
2011-06-25 Vincent PitFactor stack adjustments on leave in a new static function
2011-06-24 Father ChrysostomosMake pp_leavesublv use S_return_lvalues
2011-06-23 Father ChrysostomosFix explicit return of pad var in list lv context
2011-06-23 Father ChrysostomosCollapse the list context code in pp_leavesublv
2011-06-23 Father ChrysostomosRemove now-redundant check from pp_ctl.c:S_return_lvalues
2011-06-23 Nicholas ClarkTest studied scalars with s///ge.
2011-06-23 Father ChrysostomosMake lvalue return make the same checks as leavesublv
2011-06-23 Father Chrysostomospp_leavesublv: Put the deref code inside if(scalar)
2011-06-23 Father ChrysostomosMake pp_leavesublv switch based on gimme
2011-06-23 Father ChrysostomosRemoved unused label from pp_leavesublv
2011-06-23 Father ChrysostomosCopy PADTMPs explicitly returned from lv subs
2011-06-23 Nicholas ClarkFor s///r, avoid copying the source early only to edit...
2011-06-22 Father ChrysostomosRemove another CvLVALUE check from pp_leavesublv
2011-06-22 Father ChrysostomosMove pp_leavesublv from pp_hot.c to pp_ctl.c
2011-06-17 Father ChrysostomosRemove unnecessary code and tests
2011-06-17 Father Chrysostomos[perl #81944] Non-lvalue subs do not copy return values
2011-06-08 Father ChrysostomosRemove unnecessary TAINT_NOT
2011-06-08 Father Chrysostomos[perl #92290, #92406] Returning a pad var from lv sub
2011-06-06 David Mitchell[perl #90006] out of memory during thread clone
2011-06-04 Father Chrysostomos[perl #7946] Lvalue subs do not autovivify
2011-06-03 Father ChrysostomosFollow-up to d34a6664
2011-06-03 Father ChrysostomosMove the lvalue code from pp_return into a separate...
2011-05-31 Father ChrysostomosMake explicit return in lvalue subs work under recursion
2011-05-30 Father Chrysostomos[perl #91880] $_ refcounting problems in @INC filters
2011-05-29 David Mitchellformats: allow > 256 decimal places
2011-05-29 David MitchellAllow formats with lines >64K
2011-05-29 David Mitchellpp_formline: handle growing better
2011-05-29 David Mitchellpp_formline: keep linemark consistent
2011-05-29 David Mitchellpp_formline: make FF_ITEM use FF_LINEGLOB code
2011-05-29 David Mitchellpp_formline: make FF_LITERAL use FF_LINEGLOB code
2011-05-29 David Mitchellpp_formline: don't overgrow PL_formtarget
2011-05-29 David Mitchellpp_formline: no need to *t = '\0' until end
2011-05-29 David Mitchellpp_formline: FF_LINEGLOB: always SvCUR_set
2011-05-29 David Mitchellpp_formline: don't set itemsize in FF_LINEGLOB
2011-05-29 David Mitchellpp_formline: make FF_LITERAL use item_is_utf8 flag
2011-05-29 David Mitchellpp_formline: don't do get mg on PL_formtarget
2011-05-29 David Mitchellpp_formline: split FF_LINEGLOB into two blocks
2011-05-29 David Mitchellpp_formline: FF_LINEGLOB: hoist 2 vars to fn scope
2011-05-29 David Mitchellpp_formline: reduce indent in FF_LINEGLOB
2011-05-29 David Mitchellpp_formline: restruture FF_LINEGLOB
2011-05-29 David Mitchellpp_formline: combine two similar code chunks
2011-05-29 David Mitchellstop ~ in format modifying format string
2011-05-29 David Mitchellbetter document format code
2011-05-29 David MitchellRT #91032: formline: bugs with non-string formats
2011-05-27 Father Chrysostomos[perl #72724] explicit return doesn’t work with lvalue...
2011-05-19 Robin Barkerunused variables in pp_ctl.c
2011-05-18 Eric Brinegiven wasn't calling set magic [RT#84526]
2011-05-18 Nicholas ClarkIn S_doparseform(), don't force the pattern to a string...
2011-05-18 Nicholas ClarkStore the compiled format in mg_ptr instead of after...
2011-05-18 Nicholas ClarkS_doparseform() should return void, not OP*, as it...
2011-05-11 Father ChrysostomosMake ‘require func()’ work with .pm abs path v5.14.0-RC3
2011-04-19 David Mitchelldispatch signals when leaving an eval
2011-04-03 Father Chrysostomos[perl #87064] eval no longer shares filters
2011-02-18 David Mitchellpp_regcomp: don't unset RXf_TAINTED
2011-02-18 David Mitchelltaint REGEX SVs as well as refs to them
2011-02-16 David Mitchelldocument how tainting works with pattern matching
2011-02-16 David Mitchellfix many s/// tainting bugs
2011-01-17 Karl WilliamsonCH] Change usage of regex/op common to common names
2011-01-09 Nicholas ClarkGenerate pp_* prototypes in pp_proto.h, and remove...
2011-01-07 Peter J. Acklam... Fix typos (spelling errors) in Perl sources.
2010-12-31 David Mitchellstandardise amagic method naming
2010-12-11 Father Chrysostomos[perl #68712] caller() filenames broken by "use"
2010-12-08 Father Chrysostomos[perl #66104] Bugs in extended regexp features
2010-12-06 Zeframstopgap hack for $@ as unwinding reason indicator
2010-11-26 Father ChrysostomosAvoid redundant hv_delete call in pp_entereval
2010-11-26 Father ChrysostomosStop eval "BEGIN{die}" from leaking
2010-11-25 Father Chrysostomos[perl #78438] Memory leak with 'use v5.42'
2010-11-25 Father ChrysostomosStop eval "use 6" from leaking
2010-11-25 Father ChrysostomosStop eval "no 5" from leaking
2010-11-25 Nicholas ClarkMake BEGIN {require 5.12.0} behave as documented.
2010-11-24 Nicholas ClarkDeprecate sv_compile_2op()
2010-11-15 Niko TyniImplement $^A tainting
2010-11-15 Niko TyniFix a crash with a tainted formline() picture
2010-11-09 Florian RagwitzRemove an unused variable
2010-11-09 Nicholas ClarkIn S_check_type_and_open() call PerlIO_openn() directly...
2010-11-09 Nicholas ClarkChange S_doopen_pm() and S_check_type_and_open() to...
2010-10-26 David Mitchellfix thinko in code comment
2010-10-25 Zeframrefactor and regularise label/statement grammar
2010-10-24 Zeframdon't rely on ghost contexts being unmolested
2010-10-21 Zeframfull API for cop hint hashes
2010-10-21 Zeframadd lex_start to the API
2010-10-21 Zeframremove redundant lex_end
2010-10-21 Zeframremove filter inheritance option from lex_start
2010-10-19 Nicholas ClarkStop 'use v5.8' leaking memory. Fixes #78436.
2010-10-11 Ben MorrowRemove some excess cleverness from the Bhk macros.
2010-10-04 David Mitchellstop map,grep leaking temps [perl #48004]
2010-10-03 David MitchellG_KEEPERR sometimes set $@
2010-09-25 Father Chrysostomos[perl #76814] FETCH called twice - m and s
2010-09-23 Father Chrysostomos[perl #70614] Seg. fault with eval/use/UNITCHECK/DESTRO...
2010-09-21 Father Chrysostomos[perl #19078] wrong match order inside replacement
next