| Commit message (Expand) | Author | Age | Files | Lines |
* | Add x-ref from call site in do_readline() of sv_grow() to it's matching test ... | Josh ben Jore | 2010-07-14 | 1 | -2/+6 |
* | add some comments to pp_concat | David Mitchell | 2010-07-03 | 1 | -4/+4 |
* | remove double stringify-overload from $ovld .= foo | David Mitchell | 2010-07-03 | 1 | -3/+2 |
* | Add Perl_croak_no_modify() to implement Perl_croak("%s", PL_no_modify). | Nicholas Clark | 2010-06-27 | 1 | -3/+3 |
* | fix for RT #8438: $tied->() doesn't call FETCH | David Mitchell | 2010-06-04 | 1 | -26/+12 |
* | rename DM_ARRAY flag to DM_ARRAY_ISA | David Mitchell | 2010-06-04 | 1 | -1/+1 |
* | Revert "Re: [perl #51636] segmentation fault with array ties" | David Mitchell | 2010-06-04 | 1 | -19/+3 |
* | add OPpDEREFed flag to avoid double mg_get() | David Mitchell | 2010-05-25 | 1 | -1/+2 |
* | Deref ops ignore get-magic when SvROK(sv) | Father Chrysostomos (via RT) | 2010-05-25 | 1 | -6/+1 |
* | Add s///r (non-destructive substitution). | David Caldwell | 2010-05-22 | 1 | -5/+25 |
* | followup to magic/overload fix | David Mitchell | 2010-05-21 | 1 | -1/+1 |
* | make overload respect get magic | David Mitchell | 2010-05-21 | 1 | -23/+26 |
* | [perl #41530] s/non-utf8/is-utf8/ fails. | Karl Williamson | 2010-05-17 | 1 | -0/+17 |
* | Permit array assignment to steal temps and copy shared hash key scalars. | Nicholas Clark | 2010-05-02 | 1 | -1/+2 |
* | Better fix for RT #2140 (list assignment with duplicated temporaries) | Nicholas Clark | 2010-05-02 | 1 | -1/+11 |
* | avoid multiple FETCHes | David Mitchell | 2010-04-25 | 1 | -3/+3 |
* | Dispatch signals in infinite loops such as 1 while 1; | Nicholas Clark | 2010-04-17 | 1 | -0/+1 |
* | Fix code before statement error introduced by f410a2119920dd04. | Nicholas Clark | 2010-04-15 | 1 | -2/+2 |
* | Move PERL_ASYNC_CHECK() from the runloop to control flow OPs. | Nicholas Clark | 2010-04-15 | 1 | -0/+7 |
* | PL_defoutgv isn't always a GV. | David Mitchell | 2010-03-30 | 1 | -1/+1 |
* | Fix assorted bugs related to magic (such as pos) not "sticking" to | David Mitchell | 2010-03-23 | 1 | -10/+16 |
* | Back out the {ENTER,LEAVE}_with_name("sub") part of d343c3ef45381352 for now. | Nicholas Clark | 2010-01-14 | 1 | -9/+9 |
* | [perl #70764] $' fails to initialized for pre-compiled regular expression mat... | Father Chrysostomos | 2009-12-14 | 1 | -1/+5 |
* | Ensure that pp_qr returns a new regexp SV each time. Resolves RT #69852. | Nicholas Clark | 2009-12-02 | 1 | -4/+7 |
* | Inline PL_no_symref into pp_entersub. Deprecate the visible global variable. | Nicholas Clark | 2009-11-15 | 1 | -1/+1 |
* | Add ENTER_with_name and LEAVE_with_name to automaticly check for matching ENT... | Gerard Goossen | 2009-11-12 | 1 | -20/+20 |
* | add an elipses to string/ref warnings when str longer than 32 chars | Yves Orton | 2009-10-26 | 1 | -1/+1 |
* | Add Perl_ck_warner(), which combines Perl_ckwarn() and Perl_warner(). | Nicholas Clark | 2009-10-12 | 1 | -5/+5 |
* | Remove an unnecessary NULL check, which is already checked other places | gfx | 2009-09-05 | 1 | -2/+4 |
* | In pp_entersub, replace gv_fetchpv() with gv_fetchpvs(). | Nicholas Clark | 2009-08-22 | 1 | -1/+1 |
* | Use the new SAVEHDELETE() macro wherever possible | Vincent Pit | 2009-07-25 | 1 | -10/+5 |
* | Don't call SvPV_const() on the method name at the top of method_common(), as ... | Vincent Pit | 2009-03-29 | 1 | -5/+7 |
* | Also define 'localizing' in pp_helem for the sake of clarity | Vincent Pit | 2008-12-28 | 1 | -2/+3 |
* | On scope end, delete localized array elements that should not exist anymore, ... | Vincent Pit | 2008-12-28 | 1 | -2/+21 |
* | Introduce SvCANEXISTDELETE in pp.h, which simplify the logic in pp_helem and ... | Vincent Pit | 2008-12-28 | 1 | -14/+9 |
* | [perl #38809] return do { } : take 3 (or 4...) | Vincent Pit | 2008-11-25 | 1 | -10/+8 |
* | [perl #48489] patch to fix perl bug #7013 | bharanee rathna | 2008-11-14 | 1 | -1/+8 |
* | [perl #948] [PATCH] Allow tied $, | Chip Salzenberg | 2008-11-14 | 1 | -2/+4 |
* | Re: [perl #60360] [PATCH] UPDATED: local $SIG{FOO} = sub {...}; sets signal h... | Chip Salzenberg | 2008-11-13 | 1 | -1/+2 |
* | Re: [perl #60360] [PATCH] local $SIG{FOO} = sub {...}; sets signal | Chip Salzenberg | 2008-11-12 | 1 | -1/+1 |
* | Assigning to DEFSV leaks if PL_defgv's gp_sv isn't set. | Marcus Holland-Moritz | 2008-11-08 | 1 | -1/+1 |
* | PATCH: Large omnibus patch to clean up the JRRT quotes | Tom Christiansen | 2008-11-02 | 1 | -2/+4 |
* | Explicitly specify some printf formats for constant strings. | Rafael Garcia-Suarez | 2008-11-02 | 1 | -5/+5 |
* | Add MUTABLE_GV(), and eliminate (V *) casts in *.c. | Nicholas Clark | 2008-10-31 | 1 | -10/+11 |
* | Eliminate (SV *) casts from the rest of *.c, picking up one (further) | Nicholas Clark | 2008-10-30 | 1 | -28/+28 |
* | Use pvs macros instead of pvn where possible. | Marcus Holland-Moritz | 2008-10-29 | 1 | -2/+2 |
* | Eliminate (AV *) casts in *.c. | Nicholas Clark | 2008-10-29 | 1 | -7/+7 |
* | Add MUTABLE_CV(), and eliminate (CV *) casts in *.c. | Nicholas Clark | 2008-10-29 | 1 | -2/+2 |
* | Every remaining (HV *) cast in *.c | Nicholas Clark | 2008-10-28 | 1 | -4/+4 |
* | Update copyright years. | Nicholas Clark | 2008-10-25 | 1 | -2/+2 |