This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Most of the AUTHORS file already has hard tabs, so convert the
[perl5.git] / pp_ctl.c
2008-07-13 Nicholas ClarkMake format items @* and ^* work with references (safel...
2008-07-13 Nicholas ClarkFor cases FF_LINESNGL and FF_LINEGLOB in pp_formline...
2008-07-11 Nicholas ClarkRegression tests for, and fix quite a lot of bugs in...
2008-07-11 Nicholas ClarkSimplify code in pp_formline, removing a goto and local...
2008-06-28 Ben MorrowSome more missing isGV_with_GP()s
2008-06-17 Rafael Garcia-SuarezRename 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-SuarezRevert change #26334, which was introducing too many...
2008-04-06 Nicholas ClarkReplace all remaining accesses to COP's cop_label with...
2008-03-26 Nicholas ClarkThe offset for pos is stored as bytes, and converted...
2008-02-23 Vincent PitRe: [PATCH] Splitting OP_CONST (Was: pp_const, not...
2008-02-16 Rafael Garcia-SuarezCorrectly reference count the hints hash
2008-02-14 Rick DelaneyRe: [perl #50706] %^H affecting outside file scopes
2008-02-12 Nicholas Clarkassert() that every NN argument is not NULL. Otherwise...
2008-02-04 Nicholas ClarkMicro-optimise the order of the context types. [Because...
2008-01-29 Steve HayNicer fix than #33106 (thanks to Nicholas Clark)
2008-01-29 Steve HayFix Win32 compiler warnings introduced by #33081 and...
2008-01-28 Nicholas ClarkThe third argument of PUSHEVAL was never used by anythi...
2008-01-26 Nicholas ClarkThe layout for struct block_loop under ithreads can...
2008-01-26 Nicholas ClarkInvestigation reveals that the work of restoring the...
2008-01-26 Nicholas ClarkSome code can be removed following change 33070.
2008-01-26 Benjamin SmithRe: struct context now 12.5% smaller than 5.10
2008-01-25 Nicholas ClarkUsing PL_sv_no in place of any !SvOK() maximum removes...
2008-01-25 Nicholas ClarkSilence "possible data loss" warning.
2008-01-24 Nicholas ClarkIn struct block_loop, merge itermax and iterlval into...
2008-01-24 Nicholas ClarkMerge CXt_LOOP_STACK's use of itermax for the reverse...
2008-01-24 Nicholas ClarkChange the context type of for ($a .. $b) to CXt_LOOP_L...
2008-01-24 Nicholas ClarkAvoid using cx->blk_loop.itermax when reverse iterating...
2008-01-24 Nicholas ClarkSplit out foreach iterations of temporary lists on...
2008-01-24 Nicholas ClarkSplit CXt_LOOP into CXt_LOOP_PLAIN and CXt_LOOP_FOR...
2008-01-22 Nicholas ClarkRemove code obsoleted by change 18.
2008-01-21 Nicholas ClarkIn struct block_subst, access the member once via a...
2008-01-21 Nicholas ClarkIn struct block_eval, access the members old_in_eval...
2008-01-21 Nicholas ClarkMore places that could be using G_WANT, not picked...
2008-01-21 Nicholas ClarkChange the wantarray result from caller from IV to...
2008-01-21 Nicholas ClarkChange the hasargs return value from caller from IV...
2008-01-20 Nicholas ClarkEliminate hasargs from structs block_sub and block_form...
2008-01-20 Nicholas ClarkIn struct block_sub and block_format, access the member...
2008-01-20 Nicholas ClarkEliminate label from struct block_loop, as it can be...
2008-01-15 Jerry D. HeddenFix range operator
2008-01-11 Rafael Garcia-SuarezRename PERL_MAX_SUB_DEPTH to PERL_SUB_DEPTH_WARN, per...
2008-01-11 Nicholas ClarkREGEXPs are now stored directly in PL_regex_padav,...
2008-01-11 Rafael Garcia-SuarezIntroduce macro PERL_MAX_SUB_DEPTH
2008-01-09 Rafael Garcia-SuarezRevert change #32920, since it was solved another way...
2008-01-09 Robin BarkerRE: compile warnings w/ PM_SETRE and ReREFCNT_inc
2008-01-09 Nicholas Clark newSV() + sv_upgrade() => newSV_type()
2008-01-09 Rafael Garcia-SuarezRemove the warning "v-string in require/use non portable"
2008-01-05 Nicholas ClarkFix a compilation warning created when RX_PRELEN()...
2008-01-05 Nicholas ClarkMake REGEXP a type distinct from SV. (Much like AV...
2008-01-05 Nicholas ClarkAbolish RXf_UTF8. Store the UTF-8-ness of the pattern...
2008-01-05 Nicholas ClarkMake Perl_pregcomp() use SvUTF8() of the pattern, rathe...
2008-01-05 Nicholas ClarkFix the compile for -DPERL_OLD_COPY_ON_WRITE (apart...
2008-01-04 Marcus Holland-MoritzAdd macros mPUSHs() and mXPUSHs() for pushing SVs on...
2008-01-03 Nicholas ClarkAdd newSVpvs_flags() as a wrapper to newSVpvn_flags...
2008-01-02 Nicholas ClarkMake struct regexp the body of SVt_REGEXP SVs, REGEXPs...
2008-01-02 Nicholas ClarkConvert some "regexp" and "struct regexp" to REGEXP...
2008-01-02 Nicholas ClarkWrap all deferences of struct regexp* in macros RX_...
2007-12-28 Nicholas ClarkWrap all accesses to the members precomp and prelen...
2007-12-28 Nicholas ClarkFirst class regexps.
2007-11-30 Dmitry KarasikRe: smart match: array ~~ hash
2007-10-09 Nicholas ClarkAs we know the length, replace strEQ with memEQs in...
2007-10-09 Nicholas ClarkIf PERL_DISABLE_PMC is defined, doopen_pm() is just...
2007-10-09 Nicholas ClarkReplace Perl_sv_setpvf(aTHX_ namesv, "%s/%s", dir,...
2007-10-09 Nicholas ClarkRemove the strlen in doopen_pm() by passing in the...
2007-10-09 Nicholas ClarkRemove a call to *printf from the require code.
2007-10-05 Nicholas ClarkWith the demise of PERL_FLEXIBLE_EXCEPTIONS, S_docatch_...
2007-10-05 Nicholas ClarkAs PL_hinthv is actually tied, need to call SvSETMAGIC...
2007-10-05 Robin BarkerNew [PATCH] use 5.006; use 5.10.0
2007-10-04 Nicholas ClarkS_dopoptosub() is just a wrapper for S_dopoptosub_at...
2007-10-03 Rafael Garcia-SuarezReverse change #31978
2007-10-02 John Peacockwas Re: Freeze ?
2007-09-26 Robin BarkerRE: [PATCH] use 5.010 is ugly; use 5.10.0 warns
2007-09-25 Rick DelaneyRe: [PATCH 5.10] Improve diagnostic for reloads of...
2007-09-21 Rafael Garcia-SuarezSilence a load of "value computed is not used" warnings
2007-09-01 Rafael Garcia-SuarezRe: INC handlers and shutdown-time warnings
2007-08-28 Robin BarkerFrom: "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 HayUse Perl_croak() rather than DIE() in S_doeval() becaus...
2007-07-10 Dave MitchellFix assertion failure on failed magic eval - eg FETCH...
2007-05-21 Dave Mitchellmove PL_error_count into the PL_parser struct
2007-05-12 Dave Mitchellmove PL_rsfp_filters into the parser struct
2007-05-11 Dave Mitchellmove PL_rsfp into the PL_parser struct
2007-05-05 Dave Mitchellmove PL_lex_state into the PL_parser struct
2007-04-24 Dave Mitchellmove PL_linestr from the interpreter struct to the...
2007-04-23 Ævar Arnfjörð Bjar... Re: [PATCH (incomplete)] Make regcomp use SV* sv, inste...
2007-04-22 Nicholas ClarkFix problems caused by downsizing in change 31017....
2007-04-21 Nicholas ClarkWhere possible, use SvIV instead of SvIVX, SvNV instead...
2007-04-12 Nicholas ClarkPL_madskills is a bool, so save it as one (else Solaris...
2007-04-06 Nicholas ClarkMerge op_pmreplstart and op_pmstash/op_pmstashpv into...
2007-04-05 Nicholas ClarkS_op_destroy() was not static. Also tidy all other...
2007-04-04 Yves OrtonRe: pmdynflags and thread safety
2007-03-26 Nicholas ClarkIn struct regexp replace the two arrays of I32s accesse...
2007-03-22 Yves OrtonResolve PL_curpm issues with (??{}) and fix corruption...
2007-03-19 Rafael Garcia-SuarezUpgrade to version.pm 0.71, by John Peacock
2007-03-05 Nicholas ClarkAs SvUPGRADE() is a macro wrapping a call to sv_upgrade...
2007-03-03 Rafael Garcia-SuarezMake use VERSION also load feature.pm
2007-02-18 Nicholas ClarkAdd a new API function newSV_type, to replace the idiom:
2007-02-08 Rick DelaneyRe: Change 29193 is a regression
2007-02-03 Nicholas ClarkPurge all references to 5005 threads variables in the...
next