| Commit message (Expand) | Author | Age | Files | Lines |
* | Random accumulated patches | Andy Lester | 2006-03-31 | 1 | -1/+1 |
* | Localising hash slices with UTF-8 encoded keys was also buggy. | Nicholas Clark | 2006-03-30 | 1 | -1/+2 |
* | RE: [PATCH, no, really!] Re: [perl #38779] NAN's on Win32 | Jan Dubois | 2006-03-23 | 1 | -0/+35 |
* | If the scalar has just been upgraded to SVt_RV, there's no way SvPVX | Nicholas Clark | 2006-03-20 | 1 | -1/+1 |
* | Re: [perl #38710] localised stash slice | Rick Delaney | 2006-03-20 | 1 | -7/+11 |
* | Speedups and shrinkages of SvREFCNT_inc | Andy Lester | 2006-02-27 | 1 | -9/+9 |
* | Re: [perl #38619] Bug in lc and uc (interaction between UTF-8, substr, and lc... | SADAHIRO Tomoyuki | 2006-02-25 | 1 | -5/+10 |
* | Store GvGP in the SV head union. For all the common lookups [eg GvCV()] | Nicholas Clark | 2006-02-25 | 1 | -1/+3 |
* | Replace direct flags tests & manipulations for SVpad_TYPED and | Nicholas Clark | 2006-02-23 | 1 | -1/+2 |
* | Fix typos and a missing bracket. | Nicholas Clark | 2006-02-22 | 1 | -1/+1 |
* | Avoid C<study>ing any strings that might change underneath us, such | Nicholas Clark | 2006-02-22 | 1 | -6/+15 |
* | Re: [perl #38485] use integer; 0x80000000/-1; # coredump | Yitzchak Scott-Thoennes | 2006-02-17 | 1 | -6/+21 |
* | One shouldn't be able to dereference a GLOB as a SCALAR. | Yitzchak Scott-Thoennes | 2006-02-14 | 1 | -0/+2 |
* | Sun Studio lint patches | Andy Lester | 2006-02-14 | 1 | -0/+2 |
* | Die when integer overflow condition is detected in division under | Steve Peters | 2006-02-11 | 1 | -2/+6 |
* | assert() that we can't reach two unreachable code paths | Nicholas Clark | 2006-02-11 | 1 | -2/+1 |
* | Trying my "remove the pTHXes" patch again | Andy Lester | 2006-02-09 | 1 | -1/+1 |
* | Borland's C compiler warns that the & is unnecessary. | Nicholas Clark | 2006-02-08 | 1 | -5/+5 |
* | Merging pp_bit_or and pp_bit_xor shrinks the object code by about .7K. | Nicholas Clark | 2006-02-07 | 1 | -31/+13 |
* | All the trancendental unary operators can be merged into PP_sin | Nicholas Clark | 2006-02-07 | 1 | -50/+33 |
* | Avoid gcc warning about possibly uninitialised variables. | Nicholas Clark | 2006-02-07 | 1 | -3/+2 |
* | Create new macros AMG_CALLun_var, AMG_CALLun_var and tryAMAGICun_var | Nicholas Clark | 2006-02-07 | 1 | -5/+5 |
* | pp_pop can be implemented by pp_shift. | Nicholas Clark | 2006-02-07 | 1 | -13/+1 |
* | pp_hex can be implemented trivially by pp_oct, making pp_hex a mathom. | Nicholas Clark | 2006-02-07 | 1 | -32/+6 |
* | Merge pp_index and pp_rindex - we have another mathom. | Nicholas Clark | 2006-02-07 | 1 | -77/+15 |
* | Some refactoring to converge pp_index and pp_rindex | Nicholas Clark | 2006-02-07 | 1 | -21/+25 |
* | Fix bug 38454 (rindex corrects for $[ on bytes rather than UTF-8) | Nicholas Clark | 2006-02-07 | 1 | -1/+5 |
* | Optimise index so that if the big string is ISO-8859-1 but the little | Nicholas Clark | 2006-02-06 | 1 | -19/+42 |
* | Code assumes that *FOO{SCALAR} will always return a scalar reference, | Nicholas Clark | 2006-01-30 | 1 | -1/+1 |
* | Change all NEWSV() to newSV() in the core and non-dual-lived modules. | Steve Hay | 2006-01-18 | 1 | -5/+5 |
* | sprinkle dVAR | Jarkko Hietaniemi | 2006-01-06 | 1 | -89/+102 |
* | Introduce the macros newSVpvs(str) and sv_catpvs(sv, str). | Gisle Aas | 2006-01-04 | 1 | -1/+1 |
* | Update copyrights for files modified in 2006 | Rafael Garcia-Suarez | 2006-01-02 | 1 | -1/+1 |
* | Making 0 pointers to NULLs | Andy Lester | 2006-01-01 | 1 | -2/+2 |
* | A GVs stash can be NULL, so don't call macros that assume otherwise | Nicholas Clark | 2005-12-29 | 1 | -1/+2 |
* | pre-likely cleanup | Andy Lester | 2005-12-27 | 1 | -2/+1 |
* | Ho! Ho! Ho! Santa brings consting! | Andy Lester | 2005-12-22 | 1 | -20/+22 |
* | Add an optimisation to allow proxy constant subroutines to be copied | Nicholas Clark | 2005-12-22 | 1 | -3/+15 |
* | The lref argument of sv_2cv is actually passed onwards to gv_fetchsv, | Nicholas Clark | 2005-12-21 | 1 | -3/+4 |
* | gv_fetchpv, gv_fetchpvn and gv_fetchsv take a bitmask of flags, rather | Nicholas Clark | 2005-12-20 | 1 | -6/+6 |
* | s/Nullav/NULL/g | Nicholas Clark | 2005-12-16 | 1 | -1/+1 |
* | Fix for [perl #37886] strict 'refs' doesn't apply inside defined | Rafael Garcia-Suarez | 2005-12-15 | 1 | -4/+7 |
* | More consting, and putting stuff in embed.fnc | Andy Lester | 2005-12-06 | 1 | -29/+23 |
* | Remove redundant SvUTF8_on() calls | Gisle Aas | 2005-11-30 | 1 | -2/+0 |
* | Merge pp_slt, pp_sgt and pp_sge into pp_sle. (The most commonly used | Nicholas Clark | 2005-11-07 | 1 | -38/+24 |
* | The rarely used lcfirst and ucfirst share almost all their code. | Nicholas Clark | 2005-11-07 | 1 | -62/+13 |
* | Fix bug #37628 (both lcfirst and ucfirst) | Nicholas Clark | 2005-11-07 | 1 | -9/+6 |
* | Allow passing of the full enum name into the tryAMAGICbin family of | Nicholas Clark | 2005-11-05 | 1 | -4/+4 |
* | Re: A surprising segfault | SADAHIRO Tomoyuki | 2005-11-05 | 1 | -2/+2 |
* | I barely knew ya pp_dor. Merged into pp_defined from whence you came. | Steve Peters | 2005-11-04 | 1 | -30/+0 |