| Commit message (Expand) | Author | Age | Files | Lines |
* | Cleaner implementations for Perl_clone_params_{new,del} | Nicholas Clark | 2010-05-24 | 2 | -33/+11 |
* | Abstract *correct* initialisation of CLONE_PARAMS into Perl_clone_params_new(). | Nicholas Clark | 2010-05-24 | 7 | -20/+138 |
* | Convert Perl_sv_dup_inc() from a macro to a real function. | Nicholas Clark | 2010-05-24 | 9 | -18/+33 |
* | In perl_clone_using(), turn off AvREAL() on param->stashes. | Nicholas Clark | 2010-05-24 | 1 | -0/+7 |
* | Add package block syntax to perldelta | Zefram | 2010-05-24 | 1 | -0/+8 |
* | Add perldelta entry for non-destructive substitution | David Golden | 2010-05-23 | 1 | -0/+12 |
* | Change the API documentation from sv_2nv to sv_2nv_flags. | Nicholas Clark | 2010-05-23 | 1 | -1/+1 |
* | fix MAD handling of package block syntax | Zefram | 2010-05-23 | 3 | -208/+206 |
* | add perldelta entry for overload fixes | David Mitchell | 2010-05-23 | 1 | -2/+7 |
* | Format perlhist consistently by maint/dev track | David Golden | 2010-05-23 | 1 | -10/+20 |
* | create perl5132delta | David Golden | 2010-05-23 | 12 | -43/+314 |
* | Rephrase perlop for non-destructive substitution | David Golden | 2010-05-22 | 1 | -6/+6 |
* | Add David Caldwell to AUTHORS | David Golden | 2010-05-22 | 1 | -0/+1 |
* | Add s///r (non-destructive substitution). | David Caldwell | 2010-05-22 | 14 | -23/+209 |
* | Restore strict refs on stashes, removed by ce10b5d1ec5b5f68b0811018a415bc37. | Nicholas Clark | 2010-05-21 | 1 | -11/+0 |
* | Re-instate the use of gv_stashpvn_flags(), and the correct non-boolean argument. | Nicholas Clark | 2010-05-21 | 1 | -4/+5 |
* | Remove the tokeniser hack that prevents compile-time vivification of %stash:: | Nicholas Clark | 2010-05-21 | 2 | -27/+9 |
* | PL_in_load_module only has values 0 and 1, so can be a bool instead of int. | Nicholas Clark | 2010-05-21 | 2 | -5/+4 |
* | Perl_hv_fill(), count empty chains down, rather than used chains up. | Nicholas Clark | 2010-05-21 | 1 | -4/+5 |
* | Eliminate xhv_fill from struct xpvhv. | Nicholas Clark | 2010-05-21 | 2 | -3/+2 |
* | Make HvFILL() count the allocated buckets, instead of reading a stored value. | Nicholas Clark | 2010-05-21 | 7 | -37/+40 |
* | Replace boolean use of HvFILL(hv) with HvTOTALKEYS(hv), which is equivalent. | Nicholas Clark | 2010-05-21 | 2 | -8/+9 |
* | followup to magic/overload fix | David Mitchell | 2010-05-21 | 2 | -7/+7 |
* | make overload respect get magic | David Mitchell | 2010-05-21 | 13 | -220/+748 |
* | Remove union _xivu from _XPVCV_COMMON, and hence structs xpvcv and xpvfm | Nicholas Clark | 2010-05-21 | 2 | -6/+6 |
* | Remove union _xivu from struct regexp - replace it with a non-union paren_names. | Nicholas Clark | 2010-05-21 | 2 | -6/+2 |
* | Remove union _xivu from struct xpvhv - replace it with a non-union xav_keys. | Nicholas Clark | 2010-05-21 | 2 | -4/+2 |
* | Remove union _xivu from struct xpvav - replace it with a non-union xav_alloc. | Nicholas Clark | 2010-05-21 | 3 | -6/+3 |
* | Reinstate space optimisations to SV body structures. | Nicholas Clark | 2010-05-21 | 1 | -4/+22 |
* | In the SV body, exchange the positions of the NV and stash/magic. | Nicholas Clark | 2010-05-21 | 6 | -25/+26 |
* | Remove all space optimisations from SV body structures. | Nicholas Clark | 2010-05-21 | 1 | -31/+31 |
* | The size of a character in C is per definition 1 | H.Merijn Brand | 2010-05-21 | 1 | -34/+4 |
* | Fix CCINCDIR and CCLIBDIR for mingw64 cross compiler | Sisyphus | 2010-05-20 | 1 | -2/+12 |
* | fully test package-version-block syntax | Zefram | 2010-05-20 | 1 | -14/+21 |
* | additional tests for package block syntax | Zefram | 2010-05-20 | 1 | -20/+72 |
* | fix SEGV with eval("package Foo {") | Zefram | 2010-05-20 | 4 | -140/+163 |
* | support "package Foo { ... }" | Zefram | 2010-05-20 | 9 | -1054/+1162 |
* | PL_endav can be NULL, so in S_ithread_create() no need to set it to newAV(). | Nicholas Clark | 2010-05-20 | 1 | -1/+1 |
* | Remove redundant hv_exists() calls from ithread_create()'s spec parser. | Nicholas Clark | 2010-05-20 | 1 | -18/+19 |
* | Change S_ithread_create() params from a single AV* to a pair of SV** pointers. | Nicholas Clark | 2010-05-20 | 1 | -12/+19 |
* | In threads.xs, convert thread->params from RV to AV. | Nicholas Clark | 2010-05-20 | 1 | -9/+9 |
* | SvIVX() isn't valid on SVt_REGEXP | Nicholas Clark | 2010-05-20 | 3 | -2/+4 |
* | In sv.c, _all_ {new,del}_X* macros can be *_body_allocated. | Nicholas Clark | 2010-05-20 | 1 | -15/+8 |
* | update Ricardo Signes's email | Ricardo Signes | 2010-05-20 | 1 | -1/+1 |
* | Do not try to load a feature bundle when doing "no VERSION" | Rafael Garcia-Suarez | 2010-05-20 | 1 | -1/+2 |
* | do not check for deprecation of removed libv5.13.1 | Ricardo Signes | 2010-05-20 | 1 | -2/+2 |
* | add the v5.13.1 epigraph | Ricardo Signes | 2010-05-20 | 1 | -0/+10 |
* | remove =over/=back from epigraphs.pod, add empty sections | Ricardo Signes | 2010-05-20 | 1 | -186/+23 |
* | add new release to perlhist | Ricardo Signes | 2010-05-20 | 1 | -0/+1 |
* | update MANIFEST, remove delta for uninstalled file | Ricardo Signes | 2010-05-20 | 2 | -5/+2 |