add specific thank yous to Ack section for a couple things I can't see fitting into...
[p5sagit/p5-mst-13.2.git] / pp_hot.c
2010-06-04 David Mitchell fix for RT #8438: $tied->() doesn't call FETCH
2010-06-04 David Mitchell rename DM_ARRAY flag to DM_ARRAY_ISA
2010-06-04 David Mitchell Revert "Re: [perl #51636] segmentation fault with array...
2010-05-25 David Mitchell add OPpDEREFed flag to avoid double mg_get()
2010-05-25 Father Chrysostomo... Deref ops ignore get-magic when SvROK(sv)
2010-05-22 David Caldwell Add s///r (non-destructive substitution).
2010-05-21 David Mitchell followup to magic/overload fix
2010-05-21 David Mitchell make overload respect get magic
2010-05-17 Karl Williamson [perl #41530] s/non-utf8/is-utf8/ fails.
2010-05-02 Nicholas Clark Permit array assignment to steal temps and copy shared...
2010-05-02 Nicholas Clark Better fix for RT #2140 (list assignment with duplicate...
2010-04-25 David Mitchell avoid multiple FETCHes
2010-04-17 Nicholas Clark Dispatch signals in infinite loops such as 1 while 1;
2010-04-15 Nicholas Clark Fix code before statement error introduced by f410a2119...
2010-04-15 Nicholas Clark Move PERL_ASYNC_CHECK() from the runloop to control...
2010-03-30 David Mitchell PL_defoutgv isn't always a GV.
2010-03-23 David Mitchell Fix assorted bugs related to magic (such as pos) not...
2010-01-14 Nicholas Clark Back out the {ENTER,LEAVE}_with_name("sub") part of...
2009-12-14 Father Chrysostomos [perl #70764] $' fails to initialized for pre-compiled...
2009-12-02 Nicholas Clark Ensure that pp_qr returns a new regexp SV each time...
2009-11-15 Nicholas Clark Inline PL_no_symref into pp_entersub. Deprecate the...
2009-11-12 Gerard Goossen Add ENTER_with_name and LEAVE_with_name to automaticly...
2009-10-26 Yves Orton add an elipses to string/ref warnings when str longer...
2009-10-12 Nicholas Clark Add Perl_ck_warner(), which combines Perl_ckwarn()...
2009-09-05 gfx Remove an unnecessary NULL check, which is already...
2009-08-22 Nicholas Clark In pp_entersub, replace gv_fetchpv() with gv_fetchpvs().
2009-07-25 Vincent Pit Use the new SAVEHDELETE() macro wherever possible
2009-03-29 Vincent Pit Don't call SvPV_const() on the method name at the top...
2008-12-28 Vincent Pit Also define 'localizing' in pp_helem for the sake of...
2008-12-28 Vincent Pit On scope end, delete localized array elements that...
2008-12-28 Vincent Pit Introduce SvCANEXISTDELETE in pp.h, which simplify...
2008-11-25 Vincent Pit [perl #38809] return do { } : take 3 (or 4...)
2008-11-14 bharanee rathna [perl #48489] patch to fix perl bug #7013
2008-11-14 Chip Salzenberg [perl #948] [PATCH] Allow tied $,
2008-11-13 Chip Salzenberg Re: [perl #60360] [PATCH] UPDATED: local $SIG{FOO}...
2008-11-12 Chip Salzenberg Re: [perl #60360] [PATCH] local $SIG{FOO} = sub {....
2008-11-08 Marcus Holland-Moritz Assigning to DEFSV leaks if PL_defgv's gp_sv isn't...
2008-11-02 Tom Christiansen PATCH: Large omnibus patch to clean up the JRRT quotes
2008-11-02 Rafael Garcia-Suarez Explicitly specify some printf formats for constant...
2008-10-31 Nicholas Clark Add MUTABLE_GV(), and eliminate (V *) casts in *.c.
2008-10-30 Nicholas Clark Eliminate (SV *) casts from the rest of *.c, picking...
2008-10-29 Marcus Holland-Moritz Use pvs macros instead of pvn where possible.
2008-10-29 Nicholas Clark Eliminate (AV *) casts in *.c.
2008-10-29 Nicholas Clark Add MUTABLE_CV(), and eliminate (CV *) casts in *.c.
2008-10-28 Nicholas Clark Every remaining (HV *) cast in *.c
2008-10-25 Nicholas Clark Update copyright years.
2008-10-18 Marcus Holland-Moritz Fix memory leak in qr// operator. This was most probably
2008-06-28 Ben Morrow Some more missing isGV_with_GP()s
2008-05-02 Vincent Pit Re: [perl #51636] segmentation fault with array ties
2008-04-17 Nicholas Clark /* This code tries to figure out just what went wrong...
2008-03-10 Steve Hay Silence warning from VC++ following #33447
2008-03-06 Nicholas Clark Refactoring the /Can't return (?:array|hash) to scalar...
2008-02-26 Rafael Garcia-Suarez Chainsaw DEBUG_S out, as suggested by Vincent Pit.
2008-02-23 Vincent Pit Re: [PATCH] Splitting OP_CONST (Was: pp_const, not...
2008-02-14 Rafael Garcia-Suarez Revert change #33302. This change was wrong, since...
2008-02-13 Rick Delaney [perl #47047] Use of inherited AUTOLOAD for non-method...
2008-02-12 Nicholas Clark assert() that every NN argument is not NULL. Otherwise...
2008-01-26 Nicholas Clark Eliminate the OP_SETSTATE, which had been disabled...
2008-01-26 Benjamin Smith Re: struct context now 12.5% smaller than 5.10
2008-01-25 Nicholas Clark Using PL_sv_no in place of any !SvOK() maximum removes...
2008-01-24 Nicholas Clark In struct block_loop, merge itermax and iterlval into...
2008-01-24 Nicholas Clark Merge CXt_LOOP_STACK's use of itermax for the reverse...
2008-01-24 Nicholas Clark Change the context type of for ($a .. $b) to CXt_LOOP_L...
2008-01-24 Nicholas Clark Avoid using cx->blk_loop.itermax when reverse iterating...
2008-01-24 Nicholas Clark Split out foreach iterations of temporary lists on...
2008-01-24 Nicholas Clark Split CXt_LOOP into CXt_LOOP_PLAIN and CXt_LOOP_FOR...
2008-01-21 Nicholas Clark Eliminate the U8 sbu_once from struct subst, and shrink...
2008-01-21 Nicholas Clark In pp_subst, rxtainted is not a boolean, as it stores...
2008-01-20 Nicholas Clark In struct block_sub and block_format, access the member...
2008-01-15 Jerry D. Hedden Fix range operator
2008-01-11 Rafael Garcia-Suarez Rename PERL_MAX_SUB_DEPTH to PERL_SUB_DEPTH_WARN, per...
2008-01-11 Nicholas Clark Remove code that protected pp_qr against REGEXPs going...
2008-01-11 Rafael Garcia-Suarez Introduce macro PERL_MAX_SUB_DEPTH
2008-01-09 Rafael Garcia-Suarez Fix leak introduced by change #32873, thanks to Nicholas
2008-01-08 Nicholas Clark In PL_regexp_padav, store regexps via real references...
2008-01-06 Michael G. Schwern Re: [perl #49264] say behaves as just print on tied...
2008-01-05 Nicholas Clark Make REGEXP a type distinct from SV. (Much like AV...
2008-01-05 Nicholas Clark Replace all reads of RXf_UTF8 with RX_UTF8().
2008-01-05 Nicholas Clark Fix the compile for -DPERL_OLD_COPY_ON_WRITE (apart...
2008-01-04 Marcus Holland-Moritz Add macros mPUSHs() and mXPUSHs() for pushing SVs on...
2008-01-03 Nicholas Clark Extend newSVpvn_flags() to also call sv_2mortal() if...
2008-01-02 Nicholas Clark Add a new function newSVpvn_flags(), which takes a...
2008-01-02 Nicholas Clark Make struct regexp the body of SVt_REGEXP SVs, REGEXPs...
2008-01-02 Nicholas Clark Wrap all deferences of struct regexp* in macros RX_...
2007-12-29 Nicholas Clark Move all code that relies on reading the to-be-thrown...
2007-12-29 Yves Orton Fix Perl #49190, tests from Abigail, codefix from me.
2007-12-28 Nicholas Clark Wrap all accesses to the members precomp and prelen...
2007-12-28 Nicholas Clark First class regexps.
2007-12-27 Nicholas Clark Regexps are now orange.
2007-12-26 Nicholas Clark Take code that occurs in three places to take a scalar...
2007-12-26 Nicholas Clark Eliminate SVt_RV, and use SVt_IV to store plain references.
2007-12-26 Nicholas Clark Swap SVt_RV and SVt_NV in the SV ordering.
2007-12-24 Robin Barker PATCH re 32711
2007-12-22 Nicholas Clark Remove warning about casting integer to different sized...
2007-10-21 Rick Delaney Re: overload64.t failures
2007-10-19 Jerry D. Hedden Fix overloading for 64-bit ints (revised)
2007-10-18 Nicholas Clark No need to call strlen() on the result of CopSTASHPV...
2007-09-22 Nicholas Clark Fix bug 45607 - for the corner case *{"BONK"} = \...
2007-09-21 Rafael Garcia-Suarez Silence a load of "value computed is not used" warnings
2007-09-10 Rick Delaney Re: [perl #44623] Optimized magic_setisa has bug
next