2007-10-18 |
Nicholas Clark | It seems crazy for Perl_yylex() to individually shift...
|
commit | commitdiff | tree |
2007-10-18 |
Nicholas Clark | Change 32136 introduced an error - passing a const...
|
commit | commitdiff | tree |
2007-10-18 |
Nicholas Clark | Inline and eliminate S_incl_perldb(), as it's only...
|
commit | commitdiff | tree |
2007-10-18 |
Nicholas Clark | Simplify the logic for retrieving PL_inplace into ...
|
commit | commitdiff | tree |
2007-10-18 |
Nicholas Clark | Eliminate some uses of sv_setpv() where we already...
|
commit | commitdiff | tree |
2007-10-18 |
Nicholas Clark | Change newSVpv() to newSVpvn() where we know the length...
|
commit | commitdiff | tree |
2007-10-18 |
Nicholas Clark | use newSVpvs() on the constant string "isa", rather...
|
commit | commitdiff | tree |
2007-10-18 |
Nicholas Clark | By using the HEK that holds the stash name in S_mro_get_line...
|
commit | commitdiff | tree |
2007-10-18 |
Nicholas Clark | In Perl_amagic_call(), construct the SV with newSVpvn...
|
commit | commitdiff | tree |
2007-10-18 |
Nicholas Clark | No need to call strlen() on the result of CopSTASHPV...
|
commit | commitdiff | tree |
2007-10-18 |
Nicholas Clark | Don't call strlen() on CopFILE() for the unthreaded...
|
commit | commitdiff | tree |
2007-10-18 |
Nicholas Clark | Where possible, change gv_fetchfile() to gv_fetchfile_flags(),
|
commit | commitdiff | tree |
2007-10-18 |
Nicholas Clark | In Perl_moreswitches(), avoid the strlen() inside sv_catpv...
|
commit | commitdiff | tree |
2007-10-17 |
Nicholas Clark | In Perl_my_clearenv(), under -DPERL_USE_SAFE_PUTENV...
|
commit | commitdiff | tree |
2007-10-17 |
Nicholas Clark | Storing the length of all the overloading names saves...
|
commit | commitdiff | tree |
2007-10-16 |
Nicholas Clark | PL_AMG_names is only used by gv.c (as far as Google...
|
commit | commitdiff | tree |
2007-10-16 |
Nicholas Clark | Replace my_strlcpy() with a pair of byte writes.
|
commit | commitdiff | tree |
2007-10-16 |
Nicholas Clark | Given that S_feature_is_enabled() is a static function...
|
commit | commitdiff | tree |
2007-10-16 |
Nicholas Clark | Given that the buffer for mode in Perl_do_openn() has...
|
commit | commitdiff | tree |
2007-10-16 |
Nicholas Clark | Moving a strlen() in Perl_moreswitches() saves a strlen...
|
commit | commitdiff | tree |
2007-10-16 |
Nicholas Clark | Pass in explicit lengths for the key and type arguments to
|
commit | commitdiff | tree |
2007-10-16 |
Nicholas Clark | Perl_ck_smartmatch needs a dVAR too.
|
commit | commitdiff | tree |
2007-10-16 |
Nicholas Clark | Add dVAR;s to the functions created in change 31970.
|
commit | commitdiff | tree |
2007-10-12 |
Nicholas Clark | Remove some strlen()s and replace one strlcpy() with...
|
commit | commitdiff | tree |
2007-10-09 |
Nicholas Clark | As we know the length, replace strEQ with memEQs in...
|
commit | commitdiff | tree |
2007-10-09 |
Nicholas Clark | If PERL_DISABLE_PMC is defined, doopen_pm() is just...
|
commit | commitdiff | tree |
2007-10-09 |
Nicholas Clark | Replace Perl_sv_setpvf(aTHX_ namesv, "%s/%s", dir,...
|
commit | commitdiff | tree |
2007-10-09 |
Nicholas Clark | Remove the strlen in doopen_pm() by passing in the...
|
commit | commitdiff | tree |
2007-10-09 |
Nicholas Clark | Remove a call to *printf from the require code.
|
commit | commitdiff | tree |
2007-10-09 |
Nicholas Clark | Tests for the .pmc functionality.
|
commit | commitdiff | tree |
2007-10-09 |
Nicholas Clark | Don't deparse $^H{v_string}, which is automatically...
|
commit | commitdiff | tree |
2007-10-08 |
Nicholas Clark | Move (most of) the conditionally compiled members of...
|
commit | commitdiff | tree |
2007-10-08 |
Nicholas Clark | Shrink 4 bytes (ILP32) from the interpreter structure.
|
commit | commitdiff | tree |
2007-10-06 |
Craig A. Berry | Re: several compilation problems on VMS in perl@32039
|
commit | commitdiff | tree |
2007-10-06 |
Nicholas Clark | Finally! Worked out how to const Perl_moreswitches().
|
commit | commitdiff | tree |
2007-10-06 |
Nicholas Clark | "A" should no longer be in the list of options acceptable...
|
commit | commitdiff | tree |
2007-10-06 |
Nicholas Clark | Propagate the perlapi.pod part of change 32026 back...
|
commit | commitdiff | tree |
2007-10-06 |
Nicholas Clark | Remove remaining C<Nullch>s and C<Nullsv>s
|
commit | commitdiff | tree |
2007-10-06 |
Nicholas Clark | The scratch scalar used in -d processing for : and...
|
commit | commitdiff | tree |
2007-10-06 |
Nicholas Clark | Nothing* outside the core uses the old misspelling
|
commit | commitdiff | tree |
2007-10-06 |
Nicholas Clark | Fix precedence bug in the logic for PERL_PV_ESCAPE_NOCLEAR in
|
commit | commitdiff | tree |
2007-10-06 |
Nicholas Clark | Use the PERL_PV_PRETTY_NOCLEAR flag to simplify the...
|
commit | commitdiff | tree |
2007-10-06 |
Nicholas Clark | Add a new flag PERL_PV_PRETTY_NOCLEAR (actually just
|
commit | commitdiff | tree |
2007-10-06 |
Nicholas Clark | Fix typo in change 32043 - s/sv_catpvf/sv_catpvs/
|
commit | commitdiff | tree |
2007-10-06 |
Nicholas Clark | newSV(size) and SvPOK_on() will be more efficient than...
|
commit | commitdiff | tree |
2007-10-06 |
Nicholas Clark | Use vnewSVpvf() rather than sv_vcatpvf() onto a newly...
|
commit | commitdiff | tree |
2007-10-06 |
Nicholas Clark | Avoid using *pvf functions when the format string is...
|
commit | commitdiff | tree |
2007-10-06 |
Nicholas Clark | Directly create the SV with Perl_newSVpvf() rather...
|
commit | commitdiff | tree |
2007-10-06 |
Nicholas Clark | Optimise the logic in isPRINT(), possible following...
|
commit | commitdiff | tree |
2007-10-06 |
Nicholas Clark | Revert one hunk of change 32034 that had the possibility...
|
commit | commitdiff | tree |
2007-10-05 |
Nicholas Clark | In the MAD code, eliminate one Perl_sv_catpvf() and...
|
commit | commitdiff | tree |
2007-10-05 |
Nicholas Clark | Change a sv_catpv() to sv_catpvs().
|
commit | commitdiff | tree |
2007-10-05 |
Nicholas Clark | Eliminate the Perl_sv_catpvf() in TRIE_STORE_REVCHAR
|
commit | commitdiff | tree |
2007-10-05 |
Nicholas Clark | PL_cshname is actually a constant value known at compile...
|
commit | commitdiff | tree |
2007-10-05 |
Nicholas Clark | Eliminate most *printf-like calls that use a simple...
|
commit | commitdiff | tree |
2007-10-05 |
Nicholas Clark | With the demise of PERL_FLEXIBLE_EXCEPTIONS, S_docatch_body...
|
commit | commitdiff | tree |
2007-10-05 |
Nicholas Clark | As PL_hinthv is actually tied, need to call SvSETMAGIC...
|
commit | commitdiff | tree |
2007-10-04 |
Nicholas Clark | S_dopoptosub() is just a wrapper for S_dopoptosub_at...
|
commit | commitdiff | tree |
2007-10-03 |
Nicholas Clark | I can't spell (well know fact) and while I'm there...
|
commit | commitdiff | tree |
2007-10-03 |
Nicholas Clark | Test for a subtle pre-5.10 bug. Before 5.10 the overloading...
|
commit | commitdiff | tree |
2007-10-02 |
Nicholas Clark | Audrey spotted a spurious "Unicode".
|
commit | commitdiff | tree |
2007-10-01 |
Nicholas Clark | Nothing is using IoSUBPROCESS() so eliminate xio_subprocess.
|
commit | commitdiff | tree |
2007-09-28 |
Nicholas Clark | Make all of B work on 5.8.x
|
commit | commitdiff | tree |
2007-09-28 |
Nicholas Clark | Hopefully really fix test failures with -C
|
commit | commitdiff | tree |
2007-09-28 |
Nicholas Clark | Change 31987 forgot to re-run embed.pl
|
commit | commitdiff | tree |
2007-09-27 |
Nicholas Clark | Move the bool v_string_ok into the U16-sized gap in...
|
commit | commitdiff | tree |
2007-09-26 |
Nicholas Clark | Change 31977 introduced a bug (failing to set the return...
|
commit | commitdiff | tree |
2007-09-26 |
Nicholas Clark | Change the way of determining the MRO algorithm used...
|
commit | commitdiff | tree |
2007-09-23 |
Nicholas Clark | Add USE_IEEE to PL_bincompat_options, as use_ieee in...
|
commit | commitdiff | tree |
2007-09-23 |
Nicholas Clark | Under -DDEBUGGING (on gcc), assert that SvRV(sv) is...
|
commit | commitdiff | tree |
2007-09-22 |
Nicholas Clark | Fix bug 45607 - for the corner case *{"BONK"} = \&...
|
commit | commitdiff | tree |
2007-09-21 |
Nicholas Clark | hv_stores() on a literal string is now fractionally...
|
commit | commitdiff | tree |
2007-09-20 |
Nicholas Clark | Get mad compiling as C++. (At least for me)
|
commit | commitdiff | tree |
2007-09-20 |
Nicholas Clark | Remove now-unnecessary =cuts where POD is now adjacent...
|
commit | commitdiff | tree |
2007-09-20 |
Nicholas Clark | Add a new function Perl_hv_common_key_len(), which...
|
commit | commitdiff | tree |
2007-09-20 |
Nicholas Clark | Move the SV dereference of Perl_hv_fetch()/Perl_hv_store()/
|
commit | commitdiff | tree |
2007-09-20 |
Nicholas Clark | Switch Perl_hv_common() to returning void * rather...
|
commit | commitdiff | tree |
2007-09-20 |
Nicholas Clark | Change 31919 forgot to add Perl_hv_common to global.sym
|
commit | commitdiff | tree |
2007-09-20 |
Nicholas Clark | Convert hv_delete_ent(), hv_exists_ent(), hv_fetch_ent...
|
commit | commitdiff | tree |
2007-09-20 |
Nicholas Clark | Use Perl_hv_common() to test disabling the key conversion...
|
commit | commitdiff | tree |
2007-09-20 |
Nicholas Clark | assert that what is passed into the hash functions...
|
commit | commitdiff | tree |
2007-09-20 |
Nicholas Clark | SVs know their length, so avoid 2 calls to strlen().
|
commit | commitdiff | tree |
2007-09-20 |
Nicholas Clark | Make hv_fetch_common() non-static, and change its name...
|
commit | commitdiff | tree |
2007-09-19 |
Nicholas Clark | Change 31849 forgot to regenerate the documentation...
|
commit | commitdiff | tree |
2007-09-19 |
Nicholas Clark | Inline and abolish S_hv_magic_uvar_xkey().
|
commit | commitdiff | tree |
2007-09-19 |
Nicholas Clark | Send all delete()/delete_ent() calls via S_hv_fetch_common().
|
commit | commitdiff | tree |
2007-09-19 |
Nicholas Clark | Lots more tests with many permuations of 7, 8 and ...
|
commit | commitdiff | tree |
2007-09-19 |
Nicholas Clark | Parameterise the code that tests the rot13 hash, and...
|
commit | commitdiff | tree |
2007-09-19 |
Nicholas Clark | ext/XS/APItest/t/hash.t was failing because the fieldhash...
|
commit | commitdiff | tree |
2007-09-19 |
Nicholas Clark | Call the key transformation function for hv_exists...
|
commit | commitdiff | tree |
2007-09-19 |
Nicholas Clark | Mark utils/Makefile as read/write in perforce.
|
commit | commitdiff | tree |
2007-09-19 |
Nicholas Clark | Call the key transformation function for hv_delete().
|
commit | commitdiff | tree |
2007-09-19 |
Nicholas Clark | More tests for when fieldhash magic (doesn't) trigger.
|
commit | commitdiff | tree |
2007-09-19 |
Nicholas Clark | Correct test descriptions. bless didn't trigger. ever...
|
commit | commitdiff | tree |
2007-09-19 |
Nicholas Clark | For an LVALUE fetch, "hv_fetch()" will recurse into...
|
commit | commitdiff | tree |
2007-09-17 |
Nicholas Clark | Fix spelling errors in comments.
|
commit | commitdiff | tree |
2007-09-17 |
Nicholas Clark | Remove dead functions:
|
commit | commitdiff | tree |
2007-09-17 |
Nicholas Clark | Remove dead code surrounded by #if 0 from mathoms.c
|
commit | commitdiff | tree |
2007-09-17 |
Nicholas Clark | Some more state variable deparse tests.
|
commit | commitdiff | tree |
2007-09-17 |
Jim Cromie | grammar nit
|
commit | commitdiff | tree |
next |