summaryrefslogtreecommitdiff
path: root/embed.fnc
Commit message (Expand)AuthorAgeFilesLines
...
* pmtrans() and refkids() can be static in op.c.Nicholas Clark2008-11-261-2/+6
* pidgone() is only used in util.c, so it can be static.Nicholas Clark2008-11-261-2/+2
* Merge S_is_gv_magical() into Perl_is_gv_magical_sv().Nicholas Clark2008-11-261-4/+1
* pad_reset() is only used in pad.c, so can be static.Nicholas Clark2008-11-261-1/+5
* Exactly 1 function, in perl.c, calls Perl_magicname(), so inline it.Nicholas Clark2008-11-261-1/+0
* is_gv_magical() is only called from within gv.c.Nicholas Clark2008-11-261-1/+3
* ingroup() is only used in doio.c.Nicholas Clark2008-11-261-1/+5
* force_list(), fold_constants() and gen_constant_list() can be static.Nicholas Clark2008-11-261-3/+5
* vdie() isn't used anywhere aside from util.c, so it can be static.Nicholas Clark2008-11-261-1/+1
* Perl_cv_ckproto() is not part of the public API, and not used anywhereNicholas Clark2008-11-261-2/+0
* listkids() can be static in op.cNicholas Clark2008-11-261-1/+2
* Following on from change 34918, scalarkids() and scalarseq() can alsoNicholas Clark2008-11-261-2/+6
* "If it's not private, it's public somehow." states Rafael. The mostNicholas Clark2008-11-261-1/+1
* Replace Perl_my() with a small shell script. er. macro.Nicholas Clark2008-11-261-1/+0
* Promote Perl_setdefout() to the public API.Nicholas Clark2008-11-241-1/+1
* Re: [perl #60360] [PATCH] UPDATED: local $SIG{FOO} = sub {...}; sets signal h...Chip Salzenberg2008-11-131-3/+4
* Re: [perl #60360] [PATCH] local $SIG{FOO} = sub {...}; sets signalChip Salzenberg2008-11-121-3/+3
* Change 34627 didn't realise that if S_find_uninit_var() takes aNicholas Clark2008-10-301-1/+1
* SvPV() does not take a const SV*, which means that the pattern argumentNicholas Clark2008-10-301-2/+2
* Perl_cv_const_sv() takes a const CV *const cv argument.Nicholas Clark2008-10-291-1/+1
* Consting in S_find_uninit_var() and the routines that it calls.Nicholas Clark2008-10-281-5/+9
* Perl_hv_placeholders_get() actually takes a const HV *hv.Nicholas Clark2008-10-281-1/+1
* Bugs revealed by replacing (SV *) casts with something that doesn'tNicholas Clark2008-10-271-1/+1
* Make C++ compilers happy #1: "typename" is a C++ keyword.Marcus Holland-Moritz2008-10-241-1/+1
* Add SV allocation tracing to -Dm and PERL_MEM_LOGMarcus Holland-Moritz2008-10-241-1/+1
* Refactor Perl_mem_log_ functionsMarcus Holland-Moritz2008-10-241-0/+7
* Re: [5.8] Change 33727 (op.c) breaks constant folding in "elsif"Vincent Pit2008-09-131-0/+1
* Create a direct lookup hash for ->isa() lookup, by retaining theNicholas Clark2008-09-121-0/+1
* The stash argument to S_isa_lookup() actually never is NULL.Nicholas Clark2008-09-111-1/+1
* S_isa_lookup() no longer recurses (as of Brandon's MRO changes), so weNicholas Clark2008-09-111-1/+1
* Add Perl_croak_xs_usage(), which reduces a lot of explicit calls ofNicholas Clark2008-05-211-0/+3
* Double magic/warnings with binmode $fh, undefVincent Pit2008-04-301-1/+1
* Perl_gv_fetchmethod{,_autoload,_flags} are actually never* called withNicholas Clark2008-04-171-3/+4
* /* This code tries to figure out just what went wrong withNicholas Clark2008-04-171-0/+2
* Perl_store_cop_label() isn't meant to be part of the public API.Nicholas Clark2008-04-141-1/+1
* Split out S_refcounted_he_new_common() fromNicholas Clark2008-04-071-1/+11
* Eliminate cop_label from struct cop by storing a label as the firstNicholas Clark2008-04-071-1/+2
* Define sv_insert() as a wrapper to sv_insert_flags(), and moveNicholas Clark2008-04-011-2/+3
* Double magic with substrVincent Pit2008-03-311-0/+2
* Repeat change 33508 - change 33561 re-instated the mistake in changeNicholas Clark2008-03-251-1/+1
* Re: [PATCH] sv.c: constingSteven Schubiger2008-03-251-9/+10
* Change 33507 had a const too far (Perl_mg_dup()'s mg is assigned to).Nicholas Clark2008-03-131-1/+1
* Re: [PATCH] sv.c: constingSteven Schubiger2008-03-131-17/+19
* Re: [PATCH] sv.c: constingSteven Schubiger2008-03-121-14/+15
* Re: [PATCH] sv.c: constingSteven Schubiger2008-03-111-12/+14
* Re: [PATCH] sv.c: constingSteven Schubiger2008-03-111-18/+19
* Perl_croak_nocontext() is called with NULL indirectly from Steve Peters2008-03-081-1/+1
* Silence warning introduced by #32703 when building with MYMALLOCSteve Hay2008-03-061-1/+1
* Silence some warnings on Win32 with VC6Steve Hay2008-03-061-9/+9
* Re: [PATCH] sv.c: constingSteven Schubiger2008-03-021-12/+12