| Commit message (Expand) | Author | Age | Files | Lines |
* | in perl_clone_using, free the prt_table | David Mitchell | 2009-08-05 | 1 | -5/+6 |
* | dup saved_curcop in PL_parser | David Mitchell | 2009-07-26 | 1 | -0/+11 |
* | mro::method_changed_in(..) ignores AUTOLOAD (RT #60220) | Tony Cook | 2009-07-19 | 1 | -0/+4 |
* | Allocate XPV* memory using sizeof() and the offset of the first real member. | Nicholas Clark | 2009-07-18 | 1 | -58/+46 |
* | Fix casting warning | Rafael Garcia-Suarez | 2009-06-10 | 1 | -2/+2 |
* | Fix [RT#6266] -- sv_pos_u2b expects to be called with a valid character index | Alex Vandiver | 2009-06-10 | 1 | -2/+3 |
* | fix glob-assign for FORMAT | H.Merijn Brand | 2009-05-20 | 1 | -0/+1 |
* | In Perl_gp_dup(), no need to explicitly zero ret->gp_refcnt after the Newxz(). | Nicholas Clark | 2009-05-05 | 1 | -1/+2 |
* | Make Perl_hek_dup() cope with a NULL "source" parameter (by returning NULL). | Nicholas Clark | 2009-05-05 | 1 | -4/+3 |
* | Fix SEGVs when cloning a typeglob that has been undefined. (RT #64954) | Nicholas Clark | 2009-05-05 | 1 | -1/+1 |
* | In the context of PERL_OLD_COPY_ON_WRITE, remove comments about global mutexes. | Nicholas Clark | 2009-04-22 | 1 | -12/+0 |
* | fix a couple of comments that annoyingly look like merge conflict markers | David Mitchell | 2009-04-15 | 1 | -2/+2 |
* | The correct name of PERL_UTF8_magic is PERL_MAGIC_utf8, so use it in sv.c api... | Vincent Pit | 2009-04-14 | 1 | -3/+3 |
* | Optimize away calls to empty DESTROY methods | Rafael Garcia-Suarez | 2009-04-12 | 1 | -1/+5 |
* | Bump coopyright year in embed.pl and various files that were just touched | Rafael Garcia-Suarez | 2009-03-30 | 1 | -1/+2 |
* | Add Perl_mro_register() to register Method Resolution Orders, | Nicholas Clark | 2009-03-30 | 1 | -0/+2 |
* | In Perl_ss_dup(), case SAVEt_FREEPV can be rolled into case | Nicholas Clark | 2009-03-30 | 1 | -4/+2 |
* | Re-order Perl_save_delete() to PTR, INT, PTR. | Nicholas Clark | 2009-03-30 | 1 | -1/+3 |
* | fix some 5.10.x-specific const warnings after the big MUTABLE_* merge | David Mitchell | 2009-03-30 | 1 | -4/+4 |
* | Allow lvalue usage of SvRV() and add MUTABLE_SV() check. | Marcus Holland-Moritz | 2009-03-30 | 1 | -2/+2 |
* | Revert SvPVX() to allow lvalue usage, but also add a | Marcus Holland-Moritz | 2009-03-29 | 1 | -2/+2 |
* | Add MUTABLE_GV(), and eliminate (V *) casts in *.c. | Nicholas Clark | 2009-03-29 | 1 | -34/+36 |
* | Eliminate (SV *) casts from sv.c and [tu]*.c, except for the cast in | Nicholas Clark | 2009-03-29 | 1 | -52/+57 |
* | Add MUTABLE_IO(), and eliminate (IO *) casts in *.c. | Nicholas Clark | 2009-03-29 | 1 | -5/+5 |
* | Eliminate (AV *) casts in *.c. | Nicholas Clark | 2009-03-29 | 1 | -28/+30 |
* | Add MUTABLE_CV(), and eliminate (CV *) casts in *.c. | Nicholas Clark | 2009-03-29 | 1 | -9/+9 |
* | Every remaining (HV *) cast in *.c | Nicholas Clark | 2009-03-29 | 1 | -14/+14 |
* | Some consting in Perl_ss_dup(), and a few (HV*) casts that can be | Nicholas Clark | 2009-03-29 | 1 | -16/+16 |
* | A gaggle of casts in Perl_sv_magicext() that are (const ?V *). | Nicholas Clark | 2009-03-29 | 1 | -3/+3 |
* | Define sv_insert() as a wrapper to sv_insert_flags(), and move | Nicholas Clark | 2009-03-25 | 1 | -13/+4 |
* | Add the correct argument assertion macro to sv_insert_flags(). | Nicholas Clark | 2009-03-25 | 1 | -1/+2 |
* | Double magic with substr | Vincent Pit | 2009-03-25 | 1 | -2/+16 |
* | assert() that every NN argument is not NULL. Otherwise we have the | Nicholas Clark | 2009-03-19 | 1 | -7/+306 |
* | revert the SvOOK re-implementation: | Nicholas Clark | 2009-03-19 | 1 | -85/+38 |
* | Revert the SvOOK reimplementation: | Nicholas Clark | 2009-03-19 | 1 | -14/+56 |
* | BER is all very well, but it turns out that it's better to store the | Nicholas Clark | 2009-03-06 | 1 | -56/+14 |
* | Re-implement the SvOOK() hack to store the offset as a BER encoded | Nicholas Clark | 2009-03-06 | 1 | -38/+85 |
* | Typo spotted by Jarkko. | Nicholas Clark | 2009-03-06 | 1 | -1/+1 |
* | In sv_chop(), write sentinals over the part of the buffer that is | Nicholas Clark | 2009-03-06 | 1 | -0/+23 |
* | assert() that we're not trying to free scalars a second time. | Nicholas Clark | 2009-03-05 | 1 | -0/+1 |
* | Take code that occurs in three places to take a scalar and ready it to | Nicholas Clark | 2009-03-05 | 1 | -6/+2 |
* | By moving the "can't upgrade downwards" croak() in Perl_sv_upgrade() | Nicholas Clark | 2009-03-05 | 1 | -8/+6 |
* | Correct the minor mistake of changes 32675 and 32676 - the check should | Nicholas Clark | 2009-03-05 | 1 | -2/+2 |
* | Similiarly Perl_newHV() can become a mathom by making newHV() a | Nicholas Clark | 2009-03-05 | 1 | -0/+14 |
* | Perl_newAV() can become a mathom by making newAV() a wrapper around | Nicholas Clark | 2009-03-05 | 1 | -0/+7 |
* | sv_dup(): avoid cloning empty arrays | kevin brintnall | 2009-02-26 | 1 | -1/+4 |
* | Update comments and documentation dealing with utf | Karl | 2009-02-26 | 1 | -0/+4 |
* | It looks like the previous patch is working fine on UNIXish boxes, | Steve Peters | 2009-02-25 | 1 | -4/+0 |
* | Subject: PATCH 5.10 documentation | Steve Peters | 2009-02-25 | 1 | -7/+16 |
* | standardize save/restore of errno & vaxc$errno | Chip Salzenberg | 2009-02-14 | 1 | -2/+2 |