summaryrefslogtreecommitdiff
path: root/sv.c
Commit message (Expand)AuthorAgeFilesLines
* Inline S_glob_2pv() into Perl_sv_2pv_flags(). (Existing bugs included.)Nicholas Clark2009-05-121-23/+17
* In Perl_gp_dup(), no need to explicitly zero ret->gp_refcnt after the Newxz().Nicholas Clark2009-05-041-1/+2
* Make Perl_hek_dup() cope with a NULL "source" parameter (by returning NULL).Nicholas Clark2009-05-041-4/+3
* Fix SEGVs when cloning a typeglob that has been undefined. (RT #64954)Nicholas Clark2009-05-041-1/+1
* Remove all #ifdef MACOS_TRADITIONAL code in core and non-dual-life XS code.Nicholas Clark2009-04-271-6/+0
* In the context of PERL_OLD_COPY_ON_WRITE, remove comments about global mutexes.Nicholas Clark2009-04-191-12/+0
* GvUNIQUE* have been defined as 0 since 2005/06/30 - high time to remove them.Nicholas Clark2009-04-131-17/+1
* Change Perl_newCONSTSUB() so that a NULL sv generates an empty list return.Nicholas Clark2009-03-291-0/+3
* Don't COW PVFMs, as the IVX is now used for FmLINES. (since change 34134)Nicholas Clark2009-03-281-1/+1
* fix a couple of comments that annoyingly look like merge conflict markersDavid Mitchell2009-03-061-2/+2
* The correct name of PERL_UTF8_magic is PERL_MAGIC_utf8, so use it in sv.c api...Vincent Pit2009-02-071-3/+3
* Optimize away calls to empty DESTROY methodsRafael Garcia-Suarez2009-01-201-1/+5
* Combine sv_utf8_upgrade with a following growKarl2009-01-191-1/+2
* Bump coopyright year in embed.pl and various files that were just touchedRafael Garcia-Suarez2009-01-021-1/+2
* Faster sv_utf8_upgrade()karl williamson2009-01-021-29/+224
* Add Perl_mro_register() to register Method Resolution Orders,Nicholas Clark2008-12-271-0/+2
* sv_dup(): avoid cloning empty arrayskevin brintnall2008-12-261-1/+4
* Update comments and documentation dealing with utfKarl2008-12-261-0/+4
* It looks like the previous patch is working fine on UNIXish boxes,Steve Peters2008-12-191-4/+0
* Subject: PATCH 5.10 documentationSteve Peters2008-12-191-7/+16
* standardize save/restore of errno & vaxc$errnoChip Salzenberg2008-12-051-2/+2
* In Perl_ss_dup(), case SAVEt_FREEPV can be rolled into caseNicholas Clark2008-12-011-4/+2
* Re-order Perl_save_delete() to PTR, INT, PTR.Nicholas Clark2008-12-011-1/+3
* For SAVEHINTS(), re-order the savestack to be (?:PTR, )? INT, PTR.Nicholas Clark2008-12-011-2/+2
* sv_add_arena() is now only called from sv.c, so it can be static.Nicholas Clark2008-11-261-2/+2
* [perl #948] [PATCH] Allow tied $,Chip Salzenberg2008-11-141-1/+1
* Allow lvalue usage of SvRV() and add MUTABLE_SV() check.Marcus Holland-Moritz2008-11-101-2/+2
* Fix warning code in Perl_sv_vcatpvfn() to make the TODOMarcus Holland-Moritz2008-11-091-9/+18
* "Perl_newSVpvf("%lld")" is brokenHugo van der Sanden2008-11-091-5/+20
* Revert SvPVX() to allow lvalue usage, but also add aMarcus Holland-Moritz2008-11-071-3/+3
* PATCH: Large omnibus patch to clean up the JRRT quotesTom Christiansen2008-11-021-1/+10
* Explicitly specify some printf formats for constant strings.Rafael Garcia-Suarez2008-11-021-11/+11
* Add MUTABLE_GV(), and eliminate (V *) casts in *.c.Nicholas Clark2008-10-311-34/+37
* Change 34627 didn't realise that if S_find_uninit_var() takes aNicholas Clark2008-10-301-1/+1
* Eliminate (SV *) casts from sv.c and [tu]*.c, except for the cast inNicholas Clark2008-10-301-52/+57
* Add MUTABLE_IO(), and eliminate (IO *) casts in *.c.Nicholas Clark2008-10-291-5/+5
* Use pvs macros instead of pvn where possible.Marcus Holland-Moritz2008-10-291-5/+5
* Eliminate (AV *) casts in *.c.Nicholas Clark2008-10-291-26/+28
* Add MUTABLE_CV(), and eliminate (CV *) casts in *.c.Nicholas Clark2008-10-291-9/+9
* As Perl_cv_const_sv() now takes a const CV *, use that as the cast forNicholas Clark2008-10-291-2/+4
* Every remaining (HV *) cast in *.cNicholas Clark2008-10-281-14/+14
* Consting in S_find_uninit_var() and the routines that it calls.Nicholas Clark2008-10-281-10/+10
* Some consting in Perl_ss_dup(), and a few (HV*) casts that can beNicholas Clark2008-10-281-16/+16
* A gaggle of casts in Perl_sv_magicext() that are (const ?V *).Nicholas Clark2008-10-281-3/+3
* Update copyright years.Nicholas Clark2008-10-251-2/+2
* Make C++ compilers happy #3: make implicit castMarcus Holland-Moritz2008-10-241-3/+5
* Add SV allocation tracing to -Dm and PERL_MEM_LOGMarcus Holland-Moritz2008-10-241-3/+26
* Yet another [ACGHS]V pointer in the interpreter structure that needs toNicholas Clark2008-10-141-0/+3
* SEGV in readline with $/ set to a reference, discovered by theorbtwo.Nicholas Clark2008-09-151-1/+1
* Don't add freed SVF_BREAK scalars to the freed list.Dave Mitchell2008-08-241-2/+12