| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove set magic from typeglobs. Remove typeglob magic entirely. | Nicholas Clark | 2006-02-23 | 1 | -1/+0 |
* | Remove get magic from typeglobs. This means that PVGVs holding | Nicholas Clark | 2006-02-23 | 1 | -0/+1 |
* | Add a new CvISXSUB() macro, for abstracting the test as to whether a | Nicholas Clark | 2006-02-20 | 1 | -1/+1 |
* | Sun Studio lint patches | Andy Lester | 2006-02-14 | 1 | -1/+2 |
* | Re: [PATCH] s/Null(gv|hv|sv)/NULL/g | Steven Schubiger | 2006-02-03 | 1 | -16/+16 |
* | s/Nullcv/NULL/g | Steven Schubiger | 2006-02-03 | 1 | -7/+7 |
* | Re: [PATCH] s/Null(av|ch)/NULL/g | Steven Schubiger | 2006-02-02 | 1 | -4/+4 |
* | gv_fetchpvn_flags ranks highly in the profile, and the ::/' scanning | Nicholas Clark | 2006-02-02 | 1 | -1/+9 |
* | Yet more instances of gv_fetchpv... that should be GV_ADD rather than | Nicholas Clark | 2006-02-02 | 1 | -2/+2 |
* | And another assumption. | Nicholas Clark | 2006-02-02 | 1 | -1/+3 |
* | doubleplusoops. Apart from the documented NUL termination assumption. | Nicholas Clark | 2006-02-01 | 1 | -14/+23 |
* | Oops. 1 NUL termination assumption remains in Perl_gv_fetchpvn_flags | Nicholas Clark | 2006-02-01 | 1 | -1/+1 |
* | Make Perl_gv_fetchpvn_flags actually heed the passed in length. | Nicholas Clark | 2006-01-31 | 1 | -13/+14 |
* | PERL_DONT_CREATE_GVSV wasn't as effective as it should have been. | Nicholas Clark | 2006-01-28 | 1 | -0/+1 |
* | Change all NEWSV() to newSV() in the core and non-dual-lived modules. | Steve Hay | 2006-01-18 | 1 | -4/+4 |
* | A few more places that can use hv_fetchs(). | Gisle Aas | 2006-01-11 | 1 | -4/+4 |
* | It's the Barbie bus patch | Andy Lester | 2006-01-10 | 1 | -8/+8 |
* | sprinkle dVAR | Jarkko Hietaniemi | 2006-01-06 | 1 | -0/+12 |
* | More copyright updates | Rafael Garcia-Suarez | 2006-01-04 | 1 | -1/+1 |
* | Make the new STR_WITH_LEN() affected compile under -Dusethreads. | Gisle Aas | 2006-01-04 | 1 | -4/+4 |
* | Get rid of a few more hardcoded string lengths. | Gisle Aas | 2006-01-04 | 1 | -4/+4 |
* | Introduce the macros newSVpvs(str) and sv_catpvs(sv, str). | Gisle Aas | 2006-01-04 | 1 | -3/+3 |
* | Bad symbols that are pretending to be dirhandles, should say they | Steve Peters | 2006-01-03 | 1 | -2/+15 |
* | Reduce size of buffers for identifier names, as suggested in | Tels | 2005-12-30 | 1 | -2/+2 |
* | Perl_gv_fetchpv vs. gv_fetchpvn | Tels | 2005-12-30 | 1 | -4/+4 |
* | av.c cleanup, plus! | Andy Lester | 2005-12-29 | 1 | -1/+1 |
* | Ho! Ho! Ho! Santa brings consting! | Andy Lester | 2005-12-22 | 1 | -4/+4 |
* | Add an optimisation to allow proxy constant subroutines to be copied | Nicholas Clark | 2005-12-22 | 1 | -1/+4 |
* | Take care in toke.c not to convert constant subroutine reference | Nicholas Clark | 2005-12-20 | 1 | -0/+19 |
* | Add a GV_NOADD_NOINIT flag to gv_fetch{pv,pvn,sv} that disables | Nicholas Clark | 2005-12-20 | 1 | -2/+3 |
* | Croak if gv_init doesn't know how to create a typeglob from that type | Nicholas Clark | 2005-12-20 | 1 | -0/+10 |
* | gv_fetchpv, gv_fetchpvn and gv_fetchsv take a bitmask of flags, rather | Nicholas Clark | 2005-12-20 | 1 | -1/+1 |
* | Make gv_init recognise a reference-to-something in a symbol table as | Nicholas Clark | 2005-12-19 | 1 | -3/+16 |
* | s/Nullhv/NULL/g; | Nicholas Clark | 2005-12-16 | 1 | -2/+2 |
* | s/Nullav/NULL/g | Nicholas Clark | 2005-12-16 | 1 | -1/+1 |
* | Replace gv_fetchmethod() with a macro to call gv_fetchmethod_autoload() | Nicholas Clark | 2005-10-30 | 1 | -14/+0 |
* | gv_fullname3 and gv_efullname3 are definately mathoms. They even say so. | Nicholas Clark | 2005-10-29 | 1 | -12/+0 |
* | gv_fullname and gv_efullname are definately mathoms. | Nicholas Clark | 2005-10-29 | 1 | -14/+0 |
* | More consting, and DRY leads to shrinking object code | Andy Lester | 2005-10-19 | 1 | -4/+4 |
* | Stas' croak patch and then some | Andy Lester | 2005-10-13 | 1 | -6/+6 |
* | the return value of start_subparse() can legally be ignored | Dave Mitchell | 2005-09-29 | 1 | -1/+1 |
* | It looks like the only way to reliably make Perl_hv_name_set a pure | Nicholas Clark | 2005-09-18 | 1 | -2/+2 |
* | No need to manually set the reference count of a new IO to 1. | Nicholas Clark | 2005-08-25 | 1 | -1/+4 |
* | More embed.fnc plowing | Andy Lester | 2005-07-13 | 1 | -4/+2 |
* | make the expensive ckWARN() be called as late as possible | Dave Mitchell | 2005-07-13 | 1 | -2/+3 |
* | Making my way thru embed.fnc | Andy Lester | 2005-07-10 | 1 | -7/+8 |
* | Re: janitorial work ? [patch] | Jim Cromie | 2005-07-08 | 1 | -7/+7 |
* | Post-YAPC consting, now with an attachment! | Andy Lester | 2005-07-04 | 1 | -1/+1 |
* | Fixes to -DPERL_DONT_CREATE_GVSV to make more tests pass | Nicholas Clark | 2005-06-29 | 1 | -1/+1 |
* | First stab at not automatically creating an unused SV for GvSV | Nicholas Clark | 2005-06-29 | 1 | -17/+55 |