summaryrefslogtreecommitdiff
path: root/gv.c
Commit message (Expand)AuthorAgeFilesLines
* Modify the return value of Gv_AMupdate to indicate a compilation errorRafael Garcia-Suarez2009-07-091-5/+10
* Add a parameter "destructing" to Gv_AMupdate()Rafael Garcia-Suarez2009-07-081-8/+25
* Add test to make sure everything that outputs an exception or warning has a m...James Mastros2009-06-271-0/+2
* Move the code to add magic to $0 into Perl_gv_fetchpvn_flags().Nicholas Clark2009-05-231-0/+1
* Use only one block of memory for both PL_psig_name and PL_psig_ptr.Nicholas Clark2009-05-211-5/+4
* In Perl_gv_fetchpvn_flags(), don't re-zero memory from Newxz().Nicholas Clark2009-05-191-3/+13
* GvUNIQUE* have been defined as 0 since 2005/06/30 - high time to remove them.Nicholas Clark2009-04-131-5/+0
* Fall back to "" overload for -X.Ben Morrow2009-03-251-0/+1
* In amagic_call(), offset should be strictly lesser than the SV len to be allo...Vincent Pit2009-01-021-1/+1
* Fix overload index mismatch in overloading logic.Vincent Pit2009-01-021-1/+1
* Bump copyright year after previous change d15cd8313063e574Rafael Garcia-Suarez2009-01-021-1/+1
* Move variable declaration without initialisation at the topRafael Garcia-Suarez2009-01-021-1/+2
* 'overloading' pragmaYuval Kogman2009-01-021-0/+20
* Merge S_is_gv_magical() into Perl_is_gv_magical_sv().Nicholas Clark2008-11-261-23/+6
* is_gv_magical() is only called from within gv.c.Nicholas Clark2008-11-261-1/+1
* Hard-coded Perl_pp_entersub and Perl_pp_entereval should use PL_ppaddrTim Bunce2008-11-201-1/+1
* [perl #948] [PATCH] Allow tied $,Chip Salzenberg2008-11-141-2/+0
* Fix DBM module handling broken by #34653.Marcus Holland-Moritz2008-11-031-11/+10
* Re: @{"_<$filename"} is unreasonably tied to use of DB::DB ($^P & 0x2)Tim Bunce2008-11-031-1/+1
* PATCH: Large omnibus patch to clean up the JRRT quotesTom Christiansen2008-11-021-1/+3
* Add MUTABLE_GV(), and eliminate (V *) casts in *.c.Nicholas Clark2008-10-311-8/+9
* Eliminate (SV *) casts from the rest of *.c, picking up one (further)Nicholas Clark2008-10-301-26/+27
* Add MUTABLE_IO(), and eliminate (IO *) casts in *.c.Nicholas Clark2008-10-291-1/+1
* Use pvs macros instead of pvn where possible.Marcus Holland-Moritz2008-10-291-8/+8
* Add MUTABLE_CV(), and eliminate (CV *) casts in *.c.Nicholas Clark2008-10-291-2/+2
* Every remaining (HV *) cast in *.cNicholas Clark2008-10-281-2/+2
* Update copyright years.Nicholas Clark2008-10-251-2/+2
* Run Porting/checkARGS_ASSERT.pl and fix what it picks up. (Which,Nicholas Clark2008-05-101-1/+3
* Remove a dead case from the error reporting inNicholas Clark2008-04-171-5/+5
* Perl_gv_fetchmethod{,_autoload,_flags} are actually never* called withNicholas Clark2008-04-171-1/+1
* %.*s mandates an "int", says the C standardRafael Garcia-Suarez2008-04-171-1/+1
* Fix warning with int size in printf formatRafael Garcia-Suarez2008-04-171-1/+1
* /* This code tries to figure out just what went wrong withNicholas Clark2008-04-171-11/+41
* Avoid forwards and then backwards on the :: splitting logic inNicholas Clark2008-04-161-7/+8
* Using memEQ() rather than strnEQ() when the length is known feelsNicholas Clark2008-04-161-3/+3
* is_gv_magical correctly check "ISA"Gerard Goossen2008-04-111-1/+1
* use svtypeRobin Barker2008-02-141-4/+4
* assert() that every NN argument is not NULL. Otherwise we have theNicholas Clark2008-02-121-1/+64
* Extend newSVpvn_flags() to also call sv_2mortal() if SVs_TEMP is set inNicholas Clark2008-01-031-2/+2
* Eliminating the duplicate logic in S_method_common() andNicholas Clark2007-11-241-0/+11
* SQL::Translator triggered a subtle piece of wrongness, whereby itNicholas Clark2007-10-221-2/+10
* Change 32136 introduced an error - passing a const char * toNicholas Clark2007-10-181-1/+1
* Eliminate some uses of sv_setpv() where we already know the length.Nicholas Clark2007-10-181-2/+3
* In Perl_amagic_call(), construct the SV with newSVpvn(), as we now knowNicholas Clark2007-10-181-1/+2
* No need to call strlen() on the result of CopSTASHPV() when unthreaded,Nicholas Clark2007-10-181-0/+5
* Don't call strlen() on CopFILE() for the unthreaded case, because theNicholas Clark2007-10-181-2/+16
* Where possible, change gv_fetchfile() to gv_fetchfile_flags(),Nicholas Clark2007-10-181-1/+2
* Storing the length of all the overloading names saves a strlen() in aNicholas Clark2007-10-171-1/+1
* PL_AMG_names is only used by gv.c (as far as Google code search canNicholas Clark2007-10-161-0/+1
* Re: [perl #46217] (resent) Typeglobs vs. SUPER:: (Hook::LexWrap failure)Brandon Black2007-10-081-2/+28