sort/multicall patch
[p5sagit/p5-mst-13.2.git] / pp_hot.c
2005-11-02 Robin Houston sort/multicall patch
2005-10-31 Steve Hay Fixed threaded builds following change 25916
2005-10-31 Rafael Garcia-Suarez is_utf8_string_loc() is now a macro, don't use its...
2005-10-31 Andy Lester Etta James presents: More consting
2005-10-19 Andy Lester More consting, and DRY leads to shrinking object code
2005-10-14 Steve Peters gcc complains when it sees variables declared
2005-08-23 Rick Delaney Use SvGETMAGIC more often
2005-07-20 Tassilo von Parseval lvalue-subs returning elements of tied hashes/arrays
2005-07-17 Dave Mitchell change #25129 was overzealous in delaying the call...
2005-07-15 Andy Lester more embed cleanup
2005-07-13 Andy Lester More embed.fnc plowing
2005-07-13 Dave Mitchell make the expensive ckWARN() be called as late as possible
2005-07-10 Andy Lester Making my way thru embed.fnc
2005-07-02 Dave Mitchell missed one PAD_SET_CUR
2005-06-29 Nicholas Clark All tests pass (for me) with -DPERL_DONT_CREATE_GVSV
2005-06-29 Nicholas Clark First stab at not automatically creating an unused...
2005-06-27 Andy Lester We're going round in circles with pp_sys.c
2005-06-22 Steve Hay Silence yet more bcc32 compiler warnings
2005-06-16 Andy Lester Removing /*SUPPRESS xxx*/
2005-06-10 Nicholas Clark More SvPV consting, including some code cleanup and...
2005-06-08 Nicholas Clark More SvPV consting
2005-06-08 Nicholas Clark Nuke some more n_a, and convert S_gv_ename from char...
2005-06-08 Nicholas Clark A mising cast (given that rx->subbeg is only char *)
2005-06-08 Nicholas Clark s/PERL_COPY_ON_WRITE/PERL_OLD_COPY_ON_WRITE/g
2005-06-07 Nicholas Clark More SvPV consting
2005-06-07 Nicholas Clark More SvPV consting
2005-06-07 Nicholas Clark More SvPV consting.
2005-06-07 Nicholas Clark Lots of consting
2005-06-07 Andy Lester Unvoid SvUPGRADE
2005-06-06 Nicholas Clark Abstract all access to the shared hash value through...
2005-06-06 Nicholas Clark SvIsCOW_shared_hash is declared all the time, so use it.
2005-06-03 Andy Lester Random consting
2005-06-02 Steve Peters SvPVX_const() - part 3 ... and const'ing Storable
2005-05-27 Nicholas Clark Get the HEK once only in the hot code (class method...
2005-05-24 Andy Lester embed.fnc cleanup + SvPVX_const usage
2005-05-21 Nicholas Clark Move hv_name, hv_eiter and hv_riter into a new aux...
2005-05-16 Andy Lester consting-eleventy.patch: More consts, plus actual bug fix
2005-05-11 Rafael Garcia-Suarez Include vim/emacs modelines in generated files to open...
2005-05-10 Rafael Garcia-Suarez Add editor boilerplates to all C files
2005-05-10 Nicholas Clark s/sv_setpv(sv,"")/sv_setpvn(sv,"",0)/
2005-05-08 Nicholas Clark Perl_croak uses perl's printf, so can pass in SVs direc...
2005-04-28 Nicholas Clark Add a new macro SvPV_free() which undoes OOK and free...
2005-04-21 Jarkko Hietaniemi Symbian port of Perl
2005-04-21 Andy Lester extra code in pp_concat, Take 2
2005-04-19 Steve Peters Refactoring to Sv*_set() macros - patch #5
2005-04-18 Nicholas Clark SvPV_renew also calls SvLEN_set
2005-04-18 Nicholas Clark Replace Renew(SvPVX(...)...) with SvPV_renew, which...
2005-04-18 Nicholas Clark Refactor the odd-one-out code before a Renew(SvPVX...
2005-04-18 Steve Peters Refactoring to Sv*_set() macros - patch #4
2005-04-11 Nicholas Clark Avoid taking a reference to SvIVX and putting that...
2005-04-10 Rafael Garcia-Suarez Fix [perl #34892] Segfault on ...
2005-04-08 Andy Lester Removing Y2K warnings
2005-04-08 Steve Peters Refactoring to Sv*_set() macros - patch #2
2005-03-24 Andy Lester Third consting batch
2005-03-18 Andy Lester More const parms
2005-03-11 Andy Lester pad_push numero three-o
2005-01-14 Nicholas Clark Correct the editor block to match the perl 5 policy...
2005-01-13 Nicholas Clark replace NEWSV(), SvSetSV() with newSVsv()
2005-01-13 Nicholas Clark Update copyright years. Add an editor block while passi...
2005-01-07 Nicholas Clark Stage 1 of utf8 support for soft references.
2004-11-04 Rick Delaney [perl #3038] Re: $qr = qr/^a$/m; $x =~ $qr; fails
2004-09-08 Marcus Holland-Moritz SvO?OK_off()'s return value
2004-07-31 Dave Mitchell Add comment to the top of most .c files explaining...
2004-07-23 Dave Mitchell remove the return stack PL_retstack, and store return...
2004-07-14 Nicholas Clark "That's the way to do it"
2004-07-14 Nicholas Clark Optimise foreach my $i (reverse ...)
2004-07-14 Nicholas Clark Numeric comparison operators mustn't compare addresses...
2004-06-08 Dave Mitchell [perl #30061] double DESTROY in for loop
2004-06-08 Jarkko Hietaniemi Re: [PATCH] Re: Lack of error for large string on Solaris
2004-05-30 Shinya Hayakawa Re: my $x->{foo} doesn't work
2004-04-23 Dave Mitchell Include variable names in "Use of uninitialized value...
2004-03-23 Hugo van der Sanden Fix bug [perl #27839] returning @+ out of scope loses...
2004-03-18 Marcus Holland-Moritz range operator warnings / 64-bit fix
2004-03-16 Rafael Garcia-Suarez Update copyright notices
2004-02-23 SADAHIRO Tomoyuki Re: [perl #26905] "use bytes" doesn't apply byte semant...
2004-02-22 Dave Mitchell Extend OP_AELEMFAST optimisation to lexical arrays
2004-02-17 Dave Mitchell 22316 had stupid precedence thinkos
2004-02-17 Dave Mitchell Slight update to #22315 ($lval=*FOO); optimise the...
2004-02-17 Tassilo von Parseval Re: [PATCH] GLOB to LVALUE assignment fix
2004-02-08 Rafael Garcia-Suarez map and grep weren't working correctly with lexical...
2004-02-03 Rafael Garcia-Suarez Implement "my $_".
2004-01-29 Hugo van der Sanden Re: [perl #25269] panic: pp_match start/end pointers...
2004-01-20 Dave Mitchell second attempt to fix [perl #24914] freeing a CV refere...
2003-12-06 Rafael Garcia-Suarez Missing thingies.
2003-12-06 Tassilo von Parseval SCALAR/FIRSTKEY for tied hashes in scalar context
2003-11-29 Nicholas Clark Silence gcc 2.95 warning
2003-11-25 Torsten Foertsch Re: bug or a feature?
2003-11-13 Rafael Garcia-Suarez Fix bug [perl #24380] : assigning to a hash in list
2003-11-01 Rick Delaney Re: [PATCH bleadperl] (was Re: Is this brokenness in...
2003-10-01 Yitzchak Scott-Tho... misapplied patch 19452
2003-09-22 Jarkko Hietaniemi An error message need not be a novel.
2003-09-12 Jarkko Hietaniemi It's UTF-8, not UTF8. (Note: not s/UTF-8/UTF8/,
2003-09-10 Jarkko Hietaniemi Linenumbers for utf8 warnings were wrong, test also...
2003-09-10 Jarkko Hietaniemi If doing rcatline no point rescanning each time
2003-09-10 Jarkko Hietaniemi [perl #23770] Reading a latin1 file with open(... ...
2003-08-29 Rafael Garcia-Suarez Don't cast PL_multiline to bool : you may loose importa...
2003-08-29 Jarkko Hietaniemi Comparing an int to a U32 makes VC6 nervous.
2003-08-26 Dave Mitchell improved 19064 (local $_[0] problems)
2003-08-21 Jarkko Hietaniemi Retract #19064, broke mod_perl flushing (localisation...
2003-07-17 Anton Berezin fix $^N-related coredump
next