| Commit message (Expand) | Author | Age | Files | Lines |
... | |
| * | Introduce save_aelem_flags() | Vincent Pit | 2009-07-25 | 1 | -2/+6 |
* | | much better swap logic to support reentrancy and fix assert failure | George Greer | 2009-07-26 | 1 | -5/+0 |
|/ |
|
* | Modify the return value of Gv_AMupdate to indicate a compilation error | Rafael Garcia-Suarez | 2009-07-09 | 1 | -1/+1 |
* | Add a parameter "destructing" to Gv_AMupdate() | Rafael Garcia-Suarez | 2009-07-08 | 1 | -1/+1 |
* | Instead of a const char *, pass a HEK * to anonymise_cv(). | Nicholas Clark | 2009-06-22 | 1 | -1/+1 |
* | Regenerate headers | Rafael Garcia-Suarez | 2009-06-21 | 1 | -1/+1 |
* | Regenerate headers and fix compilation with threads after last commit | Rafael Garcia-Suarez | 2009-06-21 | 1 | -0/+5 |
* | Implement new regex escape \N | Rafael Garcia-Suarez | 2009-06-16 | 1 | -1/+1 |
* | Merge Perl_magic_setisa() and Perl_magic_clearisa(), to remove duplicated logic. | Nicholas Clark | 2009-05-21 | 1 | -2/+1 |
* | Merge the bulk of Perl_magic_clearsig() into Perl_magic_setsig(). | Nicholas Clark | 2009-05-20 | 1 | -2/+1 |
* | Add S_sv_dup_inc_multiple(), used in place of loops that call sv_dup_inc(). | Nicholas Clark | 2009-05-18 | 1 | -0/+9 |
* | Inline S_glob_2pv() into Perl_sv_2pv_flags(). (Existing bugs included.) | Nicholas Clark | 2009-05-12 | 1 | -5/+0 |
* | Convert xsutils.c and lib/attributes.pm to a regular XS extension. | Nicholas Clark | 2009-04-12 | 1 | -1/+0 |
* | Change Perl_newCONSTSUB() so that a NULL sv generates an empty list return. | Nicholas Clark | 2009-03-29 | 1 | -5/+1 |
* | In Perl_newCONSTSUB(), sv should not be NULL. | Nicholas Clark | 2009-03-29 | 1 | -1/+5 |
* | In Perl_sv_setsv_cow(), dstr can be NULL. | Nicholas Clark | 2009-03-28 | 1 | -2/+1 |
* | For S_incpush(), dir is never NULL, and len is always > 0. | Nicholas Clark | 2009-02-22 | 1 | -1/+5 |
* | Optimise S_incpush() by avoiding repeatedly copying libdir to subdir. | Nicholas Clark | 2009-02-22 | 1 | -3/+4 |
* | Unwind the implicit loop in S_init_perllib(), by writing the code out longhand. | Nicholas Clark | 2009-02-22 | 1 | -1/+1 |
* | Pass the length of the string to S_incpush_use_sep(), where known. | Nicholas Clark | 2009-02-17 | 1 | -1/+1 |
* | Ensure that the pointer to S_incpush_use_sep() is never NULL. | Nicholas Clark | 2009-02-15 | 1 | -1/+5 |
* | Loop in S_init_perllib(), only calling S_incpush*() with INCPUSH_ADD_OLD_VERS | Nicholas Clark | 2009-02-15 | 1 | -1/+1 |
* | Refactor the separator splitting loop of S_incpush() into a S_incpush_use_sep(). | Nicholas Clark | 2009-02-15 | 1 | -1/+2 |
* | Refactor S_incpush() to take 1 flags parameter, instead of 5 positional booleans | Nicholas Clark | 2009-02-15 | 1 | -1/+1 |
* | For -I, need to also unshift version and architecture libs onto @INC (RT#6665) | Nicholas Clark | 2009-02-15 | 1 | -3/+4 |
* | suidperl goes. | Nicholas Clark | 2009-01-23 | 1 | -25/+1 |
* | Update the documentation of get_sv() to note that it calls Perl_gv_fetchpv(), | Nicholas Clark | 2009-01-21 | 1 | -1/+1 |
* | Update the documentation of get_av() to note that it calls Perl_gv_fetchpv(), | Nicholas Clark | 2009-01-21 | 1 | -1/+1 |
* | Update the documentation of get_hv() to note that it calls Perl_gv_fetchpv(), | Nicholas Clark | 2009-01-21 | 1 | -1/+1 |
* | Emit less PERL_ARGS_ASSERT_* macros | Rafael Garcia-Suarez | 2009-01-05 | 1 | -6/+0 |
* | Changing get_isa_hash() to static means that it needs to be wrapped in | Nicholas Clark | 2009-01-03 | 1 | -5/+5 |
* | get_isa_hash() is only used in S_isa_lookup(), so it can be static. Also, it has | Nicholas Clark | 2009-01-03 | 1 | -1/+1 |
* | Bump coopyright year in embed.pl and various files that were just touched | Rafael Garcia-Suarez | 2009-01-02 | 1 | -1/+1 |
* | Faster sv_utf8_upgrade() | karl williamson | 2009-01-02 | 1 | -2/+7 |
* | Add save_adelete()/SAVEADELETE() to save on the stack an array element delete | Vincent Pit | 2008-12-28 | 1 | -0/+5 |
* | Break out the set-the-MRO logic from the XS_mro_set_mro into Perl_mro_set_mro(), | Nicholas Clark | 2008-12-27 | 1 | -0/+6 |
* | Proper pluggable Method Resolution Orders. 'c3' is now implemented outside the | Nicholas Clark | 2008-12-27 | 1 | -5/+0 |
* | Add Perl_mro_register() to register Method Resolution Orders, | Nicholas Clark | 2008-12-27 | 1 | -0/+10 |
* | Repurpose struct mro_meta to allow it to store cached linear ISA for arbitary | Nicholas Clark | 2008-12-27 | 1 | -0/+13 |
* | Remove "b" flag for sv_utf8_upgrade_nomg in embed.fnc | Rafael Garcia-Suarez | 2008-12-27 | 1 | -1/+1 |
* | Regen docs and headers | Rafael Garcia-Suarez | 2008-12-26 | 1 | -0/+5 |
* | Better fix for bug #6665 | Rafael Garcia-Suarez | 2008-12-26 | 1 | -1/+1 |
* | It looks like the previous patch is working fine on UNIXish boxes, | Steve Peters | 2008-12-19 | 1 | -5/+0 |
* | Subject: PATCH 5.10 documentation | Steve Peters | 2008-12-19 | 1 | -0/+5 |
* | Silence a compiler warning introduced by 34963 | Steve Hay | 2008-12-02 | 1 | -1/+1 |
* | Convention seems to be that static definitions are also made visible by | Nicholas Clark | 2008-12-01 | 1 | -14/+14 |
* | Eliminate setenv_getix() | Jerry D. Hedden | 2008-12-01 | 1 | -7/+0 |
* | Add S_save_pushptri32ptr() and use it to re-implement Perl_save_hints() | Nicholas Clark | 2008-12-01 | 1 | -0/+3 |
* | Move the implmentation of SAVEHINTS() into a new Perl_save_hints() in | Nicholas Clark | 2008-12-01 | 1 | -0/+1 |
* | Expose save_pushi32ptr() and implement SAVECOPARYBASE() with it. | Nicholas Clark | 2008-12-01 | 1 | -3/+1 |