Fix to Pod::Usage to work with all recent Pod::Text versions. Also
[p5sagit/p5-mst-13.2.git] / sv.c
2005-12-08 Nicholas Clark Merge common code from ptr_table_fetch and ptr_table_st...
2005-12-07 Nicholas Clark Pull the regexp stringification code out into S_stringi...
2005-12-07 Nicholas Clark 3 instances of SvIsUV_on(sv); can be replaced with...
2005-12-06 Nicholas Clark Move vast swathes of common code from sv_2iv_flags...
2005-12-06 Nicholas Clark The early return for SvIOKp(sv) in sv_2[iu]v_flags...
2005-12-06 Andy Lester More consting, and putting stuff in embed.fnc
2005-12-06 Nicholas Clark Don't use Copy for 1 and 2 character string constants.
2005-12-06 Nicholas Clark Eliminate an unneeded local variable.
2005-12-06 Nicholas Clark Eliminate all the gotos in sv_2pv_flags, by moving...
2005-12-06 Nicholas Clark sv_2pv_flags shouldn't return a constant string "NULLRE...
2005-12-05 Nicholas Clark Make all the return statements closer to the final...
2005-12-05 Nicholas Clark Move the scope of origsv inwards, and rename variables...
2005-12-05 Nicholas Clark Clone the brief return logic and thereby remove a goto.
2005-12-05 Nicholas Clark As they are now the same, can fold the entire switch...
2005-12-05 Nicholas Clark Untease the regexp stringification from the reference...
2005-12-05 Nicholas Clark References to version objects should stringify as VSTRI...
2005-12-05 Nicholas Clark The extra return is actually a duplicated code path...
2005-12-02 Nicholas Clark Address Hugo's comment on Dave's change (26240)
2005-12-01 Dave Mitchell sprintf %NNN$ check for large values wrapping to negative
2005-12-01 Rafael Garcia-Suarez Always define PL_memory_wrap, and use it for the new...
2005-12-01 Rafael Garcia-Suarez Missing #ifdef, noticed by Jan Dubois
2005-12-01 Gisle Aas [PATCH] Re: Perl PR: "Security holes in Sys::Syslog"
2005-12-01 Philippe M. Chiasson [patch] Re: Perl PR: "Security holes in Sys::Syslog"
2005-11-30 Gisle Aas Remove redundant SvUTF8_on() calls
2005-11-25 Nicholas Clark Move report_uninit() and its static supporting function...
2005-11-21 Nicholas Clark Flip the sign of the value in body details offset,...
2005-11-19 Nicholas Clark Norman observed that a couple of macros could make...
2005-11-19 Nicholas Clark With -DPURFIY we change the flags so that everything...
2005-11-19 Nicholas Clark Map the HE arena onto SV type 0 (SVt_NULL).
2005-11-18 Nicholas Clark Remove all the now unused new_XFOO()/del_XFOO() macros
2005-11-18 Nicholas Clark sv_clear can manipulate the arena array directly too.
2005-11-18 Nicholas Clark We only need to zero new bodies for upgrades. sv_dup...
2005-11-18 Nicholas Clark Merge the arms of the switch. The decision about what...
2005-11-18 Nicholas Clark Eliminate new_body_length from sv_dup. Replace SvTYPE...
2005-11-18 Nicholas Clark Eliminate new_body_offset from sv_dup()
2005-11-18 Nicholas Clark Merge the last remaining case duplication in sv_upgrade
2005-11-18 Nicholas Clark Eliminate new_body_length from sv_upgrade
2005-11-18 Nicholas Clark Eliminate new_body_offset from sv_upgrade
2005-11-18 Nicholas Clark new_body_inline doesn't need to be passed the root...
2005-11-18 Nicholas Clark Add a flag to the body details of which types come...
2005-11-18 Nicholas Clark Simplify the expression for the upgrade logic for SVt_IV.
2005-11-18 Nicholas Clark const and static for the const static private table.
2005-11-18 Nicholas Clark Rename sv_upgrade's parameter mt to new_type.
2005-11-17 Nicholas Clark All that can be in the first switch statement of sv_upg...
2005-11-17 Nicholas Clark "Can you see what it is yet?"
2005-11-17 Nicholas Clark Add the size of the structure to copy as a field in...
2005-11-17 Nicholas Clark Merge sizeof_body_by_svtype and offset_by_svtype into...
2005-11-17 Nicholas Clark Move the location of the definition of the arena slot...
2005-11-17 Nicholas Clark s/SvTYPE(sv)/old_type/ in sv_upgrade because we already...
2005-11-16 Nicholas Clark Oi gcc, No! sizeof(void) is an error. *Not* 1.
2005-11-16 Nicholas Clark PL_pte_root and PL_pte_arenaroot can be exterminated...
2005-11-16 Jim Cromie Re: eliminate discreet arenaroots
2005-11-14 Nicholas Clark More PERL_POISON - poison SvANY() and SvREFCNT() in...
2005-11-14 Rafael Garcia-Suarez Fix indentation of apidoc for sv_2pvutf8
2005-11-11 Andy Lester Const & local: Special Victims Unit
2005-11-08 Nicholas Clark Eliminate some unnecessary strlen()s
2005-11-04 Nicholas Clark Use the return value of sprintf in sv_2pv_flags. Remove...
2005-11-04 Nicholas Clark You can't there from here. (Dead code in sv_2pv_flags)
2005-11-04 Alan Burlison use clearenv if available
2005-11-02 Robin Houston sort/multicall patch
2005-10-31 Andy Lester Etta James presents: More consting
2005-10-29 Nicholas Clark Replace the body of the rarely used sv_setpviv_mg with...
2005-10-29 Nicholas Clark Replace sv_catsv_mg and sv_catpvn_mg, and move the...
2005-10-29 Nicholas Clark Add a new SMAGIC flag, to signal a call to SvSETMAGIC...
2005-10-29 Nicholas Clark sv_2pv_nolen, sv_2pvbyte_nolen and sv_2pvutf8_nolen...
2005-10-29 Nicholas Clark All the private implementations of @foo for compilers...
2005-10-29 Nicholas Clark sv_utf8_upgrade declares itself to be a mathom, so...
2005-10-29 Nicholas Clark Replace sv_force_normal with a macro that calls sv_forc...
2005-10-29 Nicholas Clark Replace sv_unref with a macro that calls sv_unref_flags
2005-10-29 Nicholas Clark sv_taint() can easily be replaced by a macro.
2005-10-29 Nicholas Clark A terser implementation of S_varname, by using and...
2005-10-28 Steve Peters Add a new file, mathoms.c, to hold old code kept around...
2005-10-28 Nicholas Clark Use the return value from sprintf and avoid a call...
2005-10-26 Nicholas Clark Most platforms don't actually need PL_pidstatus, or...
2005-10-19 Andy Lester More consting, and DRY leads to shrinking object code
2005-10-16 Dave Mitchell DEBUG_LEAKING_SCALARS doesn't need shared memory to...
2005-10-14 Steve Peters gcc complains when it sees variables declared
2005-10-13 Andy Lester Stas' croak patch and then some
2005-10-13 Gisle Aas SvPVutf8_nolen crashes [PATCH]
2005-10-05 Andy Lester Re: [PATCH] Random constings and printf cleanup
2005-10-03 Gisle Aas Clone PL_statusvalue_posix [PATCH]
2005-09-19 Nicholas Clark The second argument to Move() is the destination, so...
2005-09-19 Nicholas Clark First argument to he_dup is actually a const HE *
2005-08-25 Nicholas Clark Revert 25331 (except for the typo fix).
2005-08-25 Nicholas Clark To make the current implementation of sv_replace sane...
2005-08-25 Nicholas Clark Promote the warning about reference miscount in sv_repl...
2005-08-23 Rick Delaney Use SvGETMAGIC more often
2005-07-29 Andy Lester More embed.fnc goodness
2005-07-18 Robin Barker RE: blead: no longer supports %vd format
2005-07-15 Andy Lester more embed cleanup
2005-07-13 Robin Barker Error in earlier patch in sv.c
2005-07-13 Dave Mitchell make the expensive ckWARN() be called as late as possible
2005-07-12 Steve Hay Re: Scalar leaked in 'local $0' under ithreads + taint...
2005-07-12 Steve Hay Change New*() to Newx*() in various comments and docume...
2005-07-11 Jim Cromie [patch: sv.c] reuse new_body_inline in Perl_new_body
2005-07-09 Nicholas Clark sv_dec is supposed to go *down*, m'kay.
2005-07-08 Jim Cromie Re: janitorial work ? [patch]
2005-07-04 Nicholas Clark Provide a macro version of S_new_body to inline it...
2005-07-04 Andy Lester Post-YAPC consting, now with an attachment!
2005-07-04 Nicholas Clark sv_setuv_mg is so rarely called that the IV optimisatio...
next