| Commit message (Expand) | Author | Age | Files | Lines |
* | eliminate PL_reg_start_tmp, PL_reg_start_tmpl | David Mitchell | 2012-06-13 | 1 | -3/+0 |
* | update the editor hints for spaces, not tabs | Ricardo Signes | 2012-05-29 | 1 | -2/+2 |
* | scope.c: Simplify and clarify comment | Father Chrysostomos | 2012-05-21 | 1 | -15/+2 |
* | [perl #112444] Don’t leak %^H autovivified by destructor | Father Chrysostomos | 2012-04-16 | 1 | -1/+3 |
* | stop %^H pointing to being-freed hash; #112326 | David Mitchell | 2012-04-11 | 1 | -3/+4 |
* | Provide as much diagnostic information as possible in "panic: ..." messages. | Nicholas Clark | 2012-01-16 | 1 | -2/+2 |
* | Don’t double-free hint hash if copying dies | Father Chrysostomos | 2011-12-23 | 1 | -2/+4 |
* | scope.c: Allow successful saving of PL_tainted | Karl Williamson | 2011-12-15 | 1 | -1/+10 |
* | Copy magic during localisation even for GVs | Father Chrysostomos | 2011-11-18 | 1 | -1/+1 |
* | Hide pad vars from magic methods on scope exit | Father Chrysostomos | 2011-11-05 | 1 | -1/+3 |
* | Weak refs to pad hvs should go stale | Father Chrysostomos | 2011-11-05 | 1 | -0/+1 |
* | make SVs_PADTMP and SVs_PADSTALE share a bit | David Mitchell | 2011-10-07 | 1 | -2/+3 |
* | remove index offsetting ($[) | Zefram | 2011-09-09 | 1 | -5/+0 |
* | GVs of localised arrays and hashes should be refcounted | Father Chrysostomos | 2011-08-26 | 1 | -2/+6 |
* | SvREFCNT_dec already checks if the SV is non-NULL | Vincent Pit | 2011-08-02 | 1 | -2/+1 |
* | add GvCV_set() and GvGP_set() macros. | David Mitchell | 2011-01-21 | 1 | -2/+2 |
* | Silence some data truncation compiler warnings | Jan Dubois | 2010-12-16 | 1 | -1/+1 |
* | Revert "Globs that are in the symbol table can be unglobbed" | Father Chrysostomos | 2010-11-20 | 1 | -12/+3 |
* | Switch the core MRO code over to HvENAME | Father Chrysostomos | 2010-10-29 | 1 | -1/+1 |
* | add SAVEFREECOPHH() | Zefram | 2010-10-28 | 1 | -0/+4 |
* | full API for cop hint hashes | Zefram | 2010-10-21 | 1 | -10/+5 |
* | In S_save_scalar_at, remove oldtainted, unneeded since 0cbee0a449cc4e11. | Nicholas Clark | 2010-10-13 | 1 | -2/+0 |
* | add hv_copy_hints_hv and save_hints to the API | Zefram | 2010-09-16 | 1 | -1/+1 |
* | bad things happened with for $x (...) { *x = *y } | David Mitchell | 2010-09-08 | 1 | -0/+6 |
* | eliminate next_op from struct block_loop | David Mitchell | 2010-09-08 | 1 | -2/+0 |
* | remove misleading comment about CXINC; it's fine | Chip Salzenberg | 2010-07-27 | 1 | -1/+1 |
* | Revert "Fix off-by-one: avoid allocating an extra context" | Chip Salzenberg | 2010-07-27 | 1 | -2/+2 |
* | Fix off-by-one: avoid allocating an extra context | Chip Salzenberg | 2010-07-27 | 1 | -2/+2 |
* | When saving ints, if the value is small enough save it with the type. | Nicholas Clark | 2010-05-05 | 1 | -1/+11 |
* | When saving I32s, if the value is small enough save it with the type. | Nicholas Clark | 2010-05-05 | 1 | -1/+11 |
* | For SAVEt_I16, save the value with the type. | Nicholas Clark | 2010-05-04 | 1 | -2/+4 |
* | For SAVEt_I8, save the value with the type. | Nicholas Clark | 2010-05-04 | 1 | -2/+4 |
* | For SAVEt_BOOL, save the value with the type. | Nicholas Clark | 2010-05-03 | 1 | -4/+3 |
* | For SAVEt_ALLOC, store the number of save stack entries used with the type. | Nicholas Clark | 2010-05-03 | 1 | -8/+9 |
* | For SAVEt_REGCONTEXT, store the number of save stack entries used with the type. | Nicholas Clark | 2010-05-02 | 1 | -0/+3 |
* | Fix c6bf6a65 - 64 bit big endian builds were broken. | Nicholas Clark | 2010-05-03 | 1 | -1/+1 |
* | For SVt_CLEAR, store the pad offset with the type. | Nicholas Clark | 2010-05-02 | 1 | -4/+9 |
* | On the save stack, store the save type as the bottom 6 bits of a UV. | Nicholas Clark | 2010-05-01 | 1 | -13/+15 |
* | Globs that are in symbol table can be un-globbed | Lubomir Rintel (GoodData) | 2010-04-26 | 1 | -3/+12 |
* | Move PERL_ASYNC_CHECK() from the runloop to control flow OPs. | Nicholas Clark | 2010-04-15 | 1 | -0/+2 |
* | use cBOOL for bool casts | David Mitchell | 2010-04-15 | 1 | -1/+1 |
* | fix minor casting issue | David Mitchell | 2010-04-13 | 1 | -2/+2 |
* | RT 8857: premature free in local of tied element | David Mitchell | 2010-04-11 | 1 | -2/+2 |
* | improve -Dl debugging output | David Mitchell | 2010-03-30 | 1 | -0/+2 |
* | Fix compiler warning: | Jerry D. Hedden | 2009-11-13 | 1 | -1/+1 |
* | Add ENTER_with_name and LEAVE_with_name to automaticly check for matching ENT... | Gerard Goossen | 2009-11-12 | 1 | -0/+6 |
* | SvREFCNT_dec already checks if the SV is non-NULL (continued) | Vincent Pit | 2009-11-08 | 1 | -6/+2 |
* | Introduce save_hdelete() and SAVEHDELETE() | Vincent Pit | 2009-07-25 | 1 | -0/+15 |
* | Add a new SAVEf_KEEPOLDELEM flag to save_scalar_at() and save_{a,h}elem_flags() | Vincent Pit | 2009-07-25 | 1 | -3/+12 |
* | Introduce save_aelem_flags() | Vincent Pit | 2009-07-25 | 1 | -3/+3 |