This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
avoid some test-time warnings
[perl5.git] / pp_ctl.c
2011-11-16 Zeframexpunge gratuitous Unicode punctuation in comments
2011-11-15 Father ChrysostomosMove a pp_entereval comment where it belongs.
2011-11-09 Karl WilliamsonChange __attribute_unused__ to PERL_UNUSED_DECL
2011-11-06 Father ChrysostomosDon’t leak the source for evalbytes($utf8)
2011-11-06 Father ChrysostomosAvoid redundant copies in string evals
2011-11-06 Father Chrysostomoseval"" should reset %^H in more cases
2011-11-06 Father ChrysostomosMake source filters work in evalbytes
2011-11-06 Father ChrysostomosAdd evalbytes function
2011-11-06 Brian Frasereval STRING UTF8 cleanup.
2011-10-29 Father ChrysostomosRemove some repeated code in pp_regcomp
2011-10-29 Father ChrysostomosFix =~ $str_overloaded (5.10 regression)
2011-10-22 Father Chrysostomos[perl #101486] Make PL_curstash refcounted
2011-10-13 Father ChrysostomosMention all variables in $undef..$undef warnings
2011-10-13 Father ChrysostomosCall get-magic once for .. in list context
2011-10-12 Father ChrysostomosAvoid an redundant copy in pp_flop
2011-10-07 David Mitchellmake SVs_PADTMP and SVs_PADSTALE share a bit
2011-10-07 Brian FraserCast to signed before negating, to avoid compiler warnings
2011-10-06 Brian FraserMake gv.c and pp_ctl.c warnings utf8-clean
2011-10-06 Brian Fraserpp_ctl.c: pp_caller UTF8 cleanup.
2011-10-06 Brian Fraserpp_ctl.c: pp_goto UTF8 cleanup.
2011-09-23 Brian Fraser[perl #96008] use and require are affected by the open...
2011-09-21 Father Chrysostomos[perl #93590] $tainted ~~ [...] failing
2011-09-17 Father ChrysostomosFix recursion warning for ‘no warnings; goto &sub’
2011-09-17 Father ChrysostomosMake goto &CORE::sub use the right lexical scope
2011-09-09 Zeframremove index offsetting ($[)
2011-09-06 David MitchellRT #4682: given() didn't scope $_ correctly
2011-09-01 Gerard GoossenUse OPpDEREF for lvalue sub, such that the flags contai...
2011-08-27 Father Chrysostomos&CORE::reset()
2011-08-26 Father Chrysostomos&CORE::lock()
2011-08-26 Father Chrysostomos&CORE::exit()
2011-08-25 Father Chrysostomos&CORE::caller()
2011-08-25 Father Chrysostomos[perl #93320] localising @DB::args leads to coredump
2011-08-24 Gerard Goossen[perl #97088] Prevent double get-magic in various cases
2011-08-18 Father Chrysostomos[perl #97020] Carp (actually caller) leaking memory
2011-08-18 Father Chrysostomos&CORE::wantarray()
2011-08-11 Gerard GoossenMove context propagation and finalize_optree from do_ev...
2011-07-28 Gerard GoossenAdd finalize_optree function which can take over all...
2011-07-22 Father ChrysostomosCall get-magic on temp returned under recursion
2011-07-17 Father ChrysostomosRename store/fetch_cop_label as cop_*
2011-07-13 Florian RagwitzFix a compiler warning
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...
next