summaryrefslogtreecommitdiff
path: root/proto.h
Commit message (Expand)AuthorAgeFilesLines
* Fix error in 5b235299a82969c3, which gcc didn't spot, but g++ did.Nicholas Clark2010-07-251-1/+1
* Add Perl_init_dbargs(), to set up @DB::args without losing SV references.Nicholas Clark2010-07-251-0/+1
* Regen headers after previous patchesRafael Garcia-Suarez2010-02-191-6/+7
* Convert Perl_sv_pos_u2b_proper() to Perl_sv_pos_u2b_flags().Nicholas Clark2010-02-141-4/+4
* Removes 32-bit limit on substr arguments. The full range of IV and UV is avai...Eric Brine2010-02-141-0/+5
* Qualify pointer arguments of prescan_version in embed.fncRafael Garcia-Suarez2010-01-151-1/+1
* Omnibus strict and lax version parsingDavid Golden2010-01-131-0/+10
* qr/\X/ expansionKarl Williamson2009-12-051-0/+60
* cleanup get_arena param-names, mark as May-ChangeJim Cromie2009-11-241-1/+1
* Move change c35076938c7236fb into embed.fnc, from the generated file proto.hNicholas Clark2009-11-231-1/+1
* Perl_pad_sv and Perl_hv_assert don't exist without -DDEBUGGING.Craig A. Berry2009-11-211-0/+4
* lexer APIZefram2009-11-151-0/+31
* Change S_pad_check_dup()'s arguments from char*/STRLEN to SV *.Nicholas Clark2009-11-151-1/+1
* Convert pad_check_dup() to static linkage, and call it from Perl_pad_add_name().Nicholas Clark2009-11-151-4/+5
* Refactor common code paths from Perl_pad_add_name() into S_pad_add_name_sv().Nicholas Clark2009-11-151-0/+5
* Factor the "is this an in-place array operator construct" logic into a new is...Vincent Pit2009-11-101-0/+5
* Add length and flags arguments to Perl_pad_add_name().Nicholas Clark2009-11-091-1/+1
* Add length and flags arguments to Perl_pad_check_dup().Nicholas Clark2009-11-091-2/+2
* Add length and flags arguments to Perl_allocmy().Nicholas Clark2009-11-091-1/+1
* Bareword sub lookupsZefram2009-11-081-0/+5
* Add length and flags arguments to Perl_pad_findmy(), moving it to the public ...Nicholas Clark2009-11-071-1/+1
* move JMPENV_JUMP to die_where and mark it as "noreturn"Gerard Goossen2009-11-061-1/+3
* regen generated files changed by the previous patch - facility to plug in sy...Jesse Vincent2009-11-051-0/+7
* Remove Perl_pmflag() from the public API, and mark it as deprecated.Nicholas Clark2009-11-011-1/+2
* Use of SV* instead of message, msglen, utf8 to contain error messageGerard Goossen2009-11-011-5/+5
* RT#69616: regexp SVs lose regexpness in assignmentBen Morrow2009-10-221-3/+3
* Remove the PERLIO * argument to S_filter_gets(), as it's always PL_rsfpNicholas Clark2009-10-211-4/+3
* Pull out filter setup code from S_swallow_bom() into S_add_utf16_textfilter()Nicholas Clark2009-10-201-0/+5
* somewhat fix failing regex tests. but break lots of other stuff at the same timeYves Orton2009-10-191-0/+18
* Merge S_utf16_textfilter and S_utf16rev_textfilter().Nicholas Clark2009-10-181-5/+0
* Generate prototypes for utf16_textfilter and utf16rev_textfilter using embed.fncNicholas Clark2009-10-181-0/+12
* Optimise if (%foo) to be faster than if(keys %foo)demerphq2009-10-151-0/+7
* Migrate common code in Perl_ckwarn() and Perl_ckwarn_d() to S_ckwarn_common()Nicholas Clark2009-10-131-0/+3
* Replace Perl_deprecate() with a macro that calls Perl_ck_warner()Nicholas Clark2009-10-131-5/+0
* Move the code related to deprecate("comma-less variable list") into a function.Nicholas Clark2009-10-131-0/+1
* Use deprecate() in place of deprecate_old(), and remove S_deprecate_old().Nicholas Clark2009-10-131-7/+0
* Add Perl_ck_warner_d(), which combines Perl_ckwarn_d() and Perl_warner().Nicholas Clark2009-10-121-0/+6
* Add Perl_ck_warner(), which combines Perl_ckwarn() and Perl_warner().Nicholas Clark2009-10-121-0/+6
* deprecate_old() is not public, and only used within toke.c, so can be static.Nicholas Clark2009-10-121-1/+3
* Add 'package NAME VERSION' syntaxDavid Golden2009-10-061-0/+5
* Fix the build for -Dmad - f0e3f042f14b829f missed a couple of things.Nicholas Clark2009-09-141-1/+1
* Remove obsolete functions is_uni_alnumc, is_uni_alnumc_lc, is_utf8_alnumcRafael Garcia-Suarez2009-09-131-14/+0
* finish implementing -DB vs. -DxChip Salzenberg2009-08-301-0/+22
* Speed up repeatcpy() by at least 40% for 1-char or numerous repeatsVincent Pit2009-08-271-3/+3
* delimcopy(), ibcmp(), ibcmp_locale(), instr(), ninstr() and rninstr() from ut...Vincent Pit2009-08-271-25/+25
* Don't pass the the interpreter to is_ascii_string(), is_utf8_char(), is_utf8_...Vincent Pit2009-08-271-10/+10
* In C<use utf8; a=>'b'>, do not set utf8 flag on 'a' [perl #68812]Chip Salzenberg2009-08-261-0/+5
* Use less constness in MAD codeRafael Garcia-Suarez2009-08-261-1/+1
* Add clear magic to %^H so that the HE chain is reset when you empty it.Zefram2009-08-211-0/+6
* Perl_die_nocontext() is also called with NULL from XS extensions that want to...Vincent Pit2009-08-131-4/+1