A correction to change 34909 - we want *different* constants.
[p5sagit/p5-mst-13.2.git] / pp_ctl.c
2008-11-18 Nicholas Clark Rename PL_breakable_sub_generation to PL_breakable_sub_...
2008-11-18 Rafael Garcia-Suarez Use only unsigned ints for comparisons to PL_breakable_...
2008-11-18 Nicholas Clark Rafael noticed a bug in 34873 - I was comparing against...
2008-11-17 Nicholas Clark S_save_lines() was using strchr() when it should have...
2008-11-17 Nicholas Clark No need to str*cpy() a string of known fixed length...
2008-11-17 Nicholas Clark Fix the bug introduced with MRO, whereby the internals...
2008-11-16 Nicholas Clark Integrate:
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-11-01 Nicholas Clark Add a flag PERLDBf_SAVESRC, which enables the saved...
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-07-13 Nicholas Clark Make format items @* and ^* work with references (safel...
2008-07-13 Nicholas Clark For cases FF_LINESNGL and FF_LINEGLOB in pp_formline...
2008-07-11 Nicholas Clark Regression tests for, and fix quite a lot of bugs in...
2008-07-11 Nicholas Clark Simplify code in pp_formline, removing a goto and local...
2008-06-28 Ben Morrow Some more missing isGV_with_GP()s
2008-06-17 Rafael Garcia-Suarez Rename the new macro clear_errsv() from last patch...
2008-06-17 Bram [perl #51370] length($@)>0 for empty $@ if utf8 is...
2008-05-02 Vincent Pit ~~ with non-overloaded objects
2008-04-15 Rafael Garcia-Suarez Revert change #26334, which was introducing too many...
2008-04-06 Nicholas Clark Replace all remaining accesses to COP's cop_label with...
2008-03-26 Nicholas Clark The offset for pos is stored as bytes, and converted...
2008-02-23 Vincent Pit Re: [PATCH] Splitting OP_CONST (Was: pp_const, not...
2008-02-16 Rafael Garcia-Suarez Correctly reference count the hints hash
2008-02-14 Rick Delaney Re: [perl #50706] %^H affecting outside file scopes
2008-02-12 Nicholas Clark assert() that every NN argument is not NULL. Otherwise...
2008-02-04 Nicholas Clark Micro-optimise the order of the context types. [Because...
2008-01-29 Steve Hay Nicer fix than #33106 (thanks to Nicholas Clark)
2008-01-29 Steve Hay Fix Win32 compiler warnings introduced by #33081 and...
2008-01-28 Nicholas Clark The third argument of PUSHEVAL was never used by anythi...
2008-01-26 Nicholas Clark The layout for struct block_loop under ithreads can...
2008-01-26 Nicholas Clark Investigation reveals that the work of restoring the...
2008-01-26 Nicholas Clark Some code can be removed following change 33070.
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-25 Nicholas Clark Silence "possible data loss" warning.
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-22 Nicholas Clark Remove code obsoleted by change 18.
2008-01-21 Nicholas Clark In struct block_subst, access the member once via a...
2008-01-21 Nicholas Clark In struct block_eval, access the members old_in_eval...
2008-01-21 Nicholas Clark More places that could be using G_WANT, not picked...
2008-01-21 Nicholas Clark Change the wantarray result from caller from IV to...
2008-01-21 Nicholas Clark Change the hasargs return value from caller from IV...
2008-01-20 Nicholas Clark Eliminate hasargs from structs block_sub and block_form...
2008-01-20 Nicholas Clark In struct block_sub and block_format, access the member...
2008-01-20 Nicholas Clark Eliminate label from struct block_loop, as it can be...
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 REGEXPs are now stored directly in PL_regex_padav,...
2008-01-11 Rafael Garcia-Suarez Introduce macro PERL_MAX_SUB_DEPTH
2008-01-09 Rafael Garcia-Suarez Revert change #32920, since it was solved another way...
2008-01-09 Robin Barker RE: compile warnings w/ PM_SETRE and ReREFCNT_inc
2008-01-09 Nicholas Clark newSV() + sv_upgrade() => newSV_type()
2008-01-09 Rafael Garcia-Suarez Remove the warning "v-string in require/use non portable"
2008-01-05 Nicholas Clark Fix a compilation warning created when RX_PRELEN()...
2008-01-05 Nicholas Clark Make REGEXP a type distinct from SV. (Much like AV...
2008-01-05 Nicholas Clark Abolish RXf_UTF8. Store the UTF-8-ness of the pattern...
2008-01-05 Nicholas Clark Make Perl_pregcomp() use SvUTF8() of the pattern, rathe...
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 Add newSVpvs_flags() as a wrapper to newSVpvn_flags...
2008-01-02 Nicholas Clark Make struct regexp the body of SVt_REGEXP SVs, REGEXPs...
2008-01-02 Nicholas Clark Convert some "regexp" and "struct regexp" to REGEXP...
2008-01-02 Nicholas Clark Wrap all deferences of struct regexp* in macros RX_...
2007-12-28 Nicholas Clark Wrap all accesses to the members precomp and prelen...
2007-12-28 Nicholas Clark First class regexps.
2007-11-30 Dmitry Karasik Re: smart match: array ~~ hash
2007-10-09 Nicholas Clark As we know the length, replace strEQ with memEQs in...
2007-10-09 Nicholas Clark If PERL_DISABLE_PMC is defined, doopen_pm() is just...
2007-10-09 Nicholas Clark Replace Perl_sv_setpvf(aTHX_ namesv, "%s/%s", dir,...
2007-10-09 Nicholas Clark Remove the strlen in doopen_pm() by passing in the...
2007-10-09 Nicholas Clark Remove a call to *printf from the require code.
2007-10-05 Nicholas Clark With the demise of PERL_FLEXIBLE_EXCEPTIONS, S_docatch_...
2007-10-05 Nicholas Clark As PL_hinthv is actually tied, need to call SvSETMAGIC...
2007-10-05 Robin Barker New [PATCH] use 5.006; use 5.10.0
2007-10-04 Nicholas Clark S_dopoptosub() is just a wrapper for S_dopoptosub_at...
2007-10-03 Rafael Garcia-Suarez Reverse change #31978
2007-10-02 John Peacock was Re: Freeze ?
2007-09-26 Robin Barker RE: [PATCH] use 5.010 is ugly; use 5.10.0 warns
2007-09-25 Rick Delaney Re: [PATCH 5.10] Improve diagnostic for reloads of...
2007-09-21 Rafael Garcia-Suarez Silence a load of "value computed is not used" warnings
2007-09-01 Rafael Garcia-Suarez Re: INC handlers and shutdown-time warnings
2007-08-28 Robin Barker From: "Robin Barker" <Robin.Barker@npl.co.uk>
2007-08-22 John E. Malmberg [patch@31735] Module-load/require fixes for VMS
2007-07-11 Steve Hay Use Perl_croak() rather than DIE() in S_doeval() becaus...
2007-07-10 Dave Mitchell Fix assertion failure on failed magic eval - eg FETCH...
2007-05-21 Dave Mitchell move PL_error_count into the PL_parser struct
2007-05-12 Dave Mitchell move PL_rsfp_filters into the parser struct
next