| Commit message (Expand) | Author | Age | Files | Lines |
* | A couple of casting nits by Jarkko | Rafael Garcia-Suarez | 2007-03-01 | 1 | -1/+1 |
* | Add a new API function newSV_type, to replace the idiom: | Nicholas Clark | 2007-02-18 | 1 | -2/+1 |
* | Re: Segmentation fault at undeclared for loop variable | Robin Houston | 2007-02-13 | 1 | -1/+9 |
* | Purge all references to 5005 threads variables in the code. | Nicholas Clark | 2007-02-03 | 1 | -1/+0 |
* | A few more places where we know the length for sv_setpv() or sv_catpv() | Nicholas Clark | 2007-02-02 | 1 | -1/+1 |
* | You can't have special blocks if the subroutine has an "anonymous" | Nicholas Clark | 2007-01-31 | 1 | -4/+2 |
* | Improve regex stringification code | Yves Orton | 2007-01-31 | 1 | -2/+3 |
* | Refactor the code used to check/execute BEGIN/UNITCHECK/CHECK/INIT/END | Nicholas Clark | 2007-01-30 | 1 | -85/+57 |
* | UNITCHECK for XS code. Turned out to be harder that expected. | Nicholas Clark | 2007-01-29 | 1 | -1/+6 |
* | BEGIN blocks in XS should work. (Given that CHECK, INIT and END all do) | Nicholas Clark | 2007-01-29 | 1 | -0/+10 |
* | Add av_create_and_push() and av_create_and_unshift_one() to refactor | Nicholas Clark | 2007-01-29 | 1 | -32/+9 |
* | Change 30034 wasn't enough to silence the warnings - also need to | Nicholas Clark | 2007-01-27 | 1 | -2/+2 |
* | newPADOP()'s sv parameter is never NULL, so mark it as so. | Nicholas Clark | 2007-01-27 | 1 | -4/+4 |
* | newPADOP is only used under ithreads, so don't waste space by compiling | Nicholas Clark | 2007-01-27 | 1 | -0/+2 |
* | Using gv_stashsv() and sv_setsv() in Perl_package reduces source and | Nicholas Clark | 2007-01-27 | 1 | -5/+3 |
* | The last parameter to gv_stashpv/gv_stashpvn/gv_stashsv is a bitmask | Nicholas Clark | 2007-01-25 | 1 | -1/+1 |
* | split by " \0" (const string staring with a SPACE followed by NULL) | SADAHIRO Tomoyuki | 2007-01-25 | 1 | -1/+1 |
* | Add get_cvn_flags(), which is like get_cv() but takes a length. This | Nicholas Clark | 2007-01-15 | 1 | -1/+2 |
* | g++ fixes | Jarkko Hietaniemi | 2007-01-15 | 1 | -2/+4 |
* | make tr/// threadsafe by moving swash into pad | Dave Mitchell | 2007-01-12 | 1 | -2/+19 |
* | Change #29711 broke tr//c on Win32. | Yves Orton | 2007-01-09 | 1 | -2/+4 |
* | Let the regex parser decide if we have a special pattern or not. | Yves Orton | 2007-01-09 | 1 | -1/+3 |
* | Eliminate pp_threadsv, as it was only ever used by 5005 threads. | Nicholas Clark | 2007-01-08 | 1 | -21/+1 |
* | allocate op_pv strings from shared mem pool | Dave Mitchell | 2007-01-08 | 1 | -4/+5 |
* | 4th patch from: | Marcus Holland-Moritz | 2007-01-04 | 1 | -11/+11 |
* | Update copyright years to include 2007. (Plus a couple of 2006s and | Nicholas Clark | 2007-01-02 | 1 | -1/+1 |
* | further fix for #29543: fix parser leaks caused by croaking | Dave Mitchell | 2006-12-29 | 1 | -0/+4 |
* | With PAD_COMPNAME_GEN in SvUVX, SvCUR is trustworthy once more. | Nicholas Clark | 2006-12-28 | 1 | -9/+11 |
* | Move PAD_COMPNAME_GEN from SvCUR to SvUVX. | Nicholas Clark | 2006-12-28 | 1 | -1/+1 |
* | Fix #6006 for taint mode too. | Rafael Garcia-Suarez | 2006-12-23 | 1 | -0/+1 |
* | A better fix for RT #6006: revert change 29616, which was bogus, | Rafael Garcia-Suarez | 2006-12-23 | 1 | -6/+7 |
* | Fix RT #6006: Regexp replaces using large replacement variables fail | Rafael Garcia-Suarez | 2006-12-23 | 1 | -4/+6 |
* | Re: [PATCH] do not meddle in the affairs of PERL_TRACK_MEMPOOL | Jarkko Hietaniemi | 2006-12-18 | 1 | -14/+2 |
* | don't include MAD code when its not needed | Dave Mitchell | 2006-12-16 | 1 | -3/+6 |
* | Silence a VC compiler warning | Steve Hay | 2006-12-14 | 1 | -1/+1 |
* | misc MAD coredump fixes and parser leak fixes | Dave Mitchell | 2006-12-13 | 1 | -1/+3 |
* | fix double free introduced by #29543 (spotted by Nicholas) | Dave Mitchell | 2006-12-13 | 1 | -3/+17 |
* | fix parser leaks caused by croaking while shifting or reducing | Dave Mitchell | 2006-12-13 | 1 | -0/+12 |
* | Verify that the debugger has an array where to store lines before | Rafael Garcia-Suarez | 2006-12-01 | 1 | -4/+7 |
* | Cleanup regexp flags and structure | Yves Orton | 2006-11-23 | 1 | -1/+1 |
* | More safety in free()s | Rafael Garcia-Suarez | 2006-11-23 | 1 | -1/+5 |
* | Unify the two warnings "Can't declare %s in %s", in line with what's | Rafael Garcia-Suarez | 2006-11-20 | 1 | -1/+1 |
* | Re: thread free problem | Jerry D. Hedden | 2006-11-20 | 1 | -1/+10 |
* | This volatile modifier is not on the referent, but on the pointer | Rafael Garcia-Suarez | 2006-11-02 | 1 | -1/+1 |
* | Re: $, and say | Gisle Aas | 2006-11-02 | 1 | -10/+0 |
* | VOL should be used instead of volatile in the core. | Steve Peters | 2006-10-30 | 1 | -2/+2 |
* | Plug a memory leak in newCONSTSUB | Rafael Garcia-Suarez | 2006-10-25 | 1 | -0/+1 |
* | stab at UNITCHECK blocks | Alexander Gough | 2006-10-19 | 1 | -1/+10 |
* | Allow the _ prototype character to be followed by optional arguments | Rafael Garcia-Suarez | 2006-10-19 | 1 | -1/+1 |
* | The _ character is only allowed to be at the end of prototypes | Rafael Garcia-Suarez | 2006-10-18 | 1 | -0/+3 |