summaryrefslogtreecommitdiff
path: root/pp.c
Commit message (Expand)AuthorAgeFilesLines
* Back out the mauve module and related changesFlorian Ragwitz2010-09-161-3/+2
* $ref++, $ref-- leaked referentDavid Mitchell2010-09-061-0/+4
* use more efficient sv_reftype_len() interfaceYves Orton2010-08-301-2/+3
* Fix my $x = 3; $x = length(undef);.Ben Morrow2010-08-201-3/+6
* Fix untimely destruction introduced by lvalue ops [RT#67838] by returning a T...Eric Brine2010-08-131-70/+53
* Make srand() return "0 but true" for 0, for backwards compatible behaviour.Nicholas Clark2010-07-281-1/+8
* srand: change to return its seedKarl Williamson2010-07-281-3/+3
* add CvGV_set() macro and make CvGV() rvalue onlyDavid Mitchell2010-07-181-1/+1
* protect CvGV weakref with backrefDavid Mitchell2010-07-141-1/+1
* Code for allowing uppercase X/B in hexadecimal/binary numbers (#76296).Bo Lindbergh2010-07-061-2/+2
* Add Perl_croak_no_modify() to implement Perl_croak("%s", PL_no_modify).Nicholas Clark2010-06-271-4/+4
* Return DIE(...) to *return*ing Perl_die(...).Nicholas Clark2010-06-271-2/+0
* RT 75902: Add prototypes for tie() and untie() to allow overloadingFather Chrysostomos2010-06-251-0/+8
* uc(): Handle Greek YPOGEGRAMMENIKarl Williamson2010-06-151-26/+34
* rename DM_ARRAY flag to DM_ARRAY_ISADavid Mitchell2010-06-041-1/+1
* Make pp_reverse fetch the lexical $_ from the correct padVincent Pit2010-06-031-8/+1
* add OPpDEREFed flag to avoid double mg_get()David Mitchell2010-05-251-1/+2
* Deref ops ignore get-magic when SvROK(sv)Father Chrysostomos (via RT)2010-05-251-11/+2
* followup to magic/overload fixDavid Mitchell2010-05-211-6/+6
* make overload respect get magicDavid Mitchell2010-05-211-174/+221
* shift; optimizationRuslan Zakirov2010-05-031-1/+2
* avoid use of operator name in macroRobin Barker2010-04-261-2/+2
* use cBOOL for bool castsDavid Mitchell2010-04-151-1/+1
* Merge commit 'origin/davem/post-5.12' into bleadDavid Mitchell2010-04-131-0/+1
|\
| * [perl #45167] Taint removal by sprintfDavid Mitchell2010-03-211-0/+1
* | [perl #74168] Assertion failure when emitting a stricture error messageRafael Garcia-Suarez2010-04-091-2/+2
* | Don't initialize end in pp_reverse when begin is NULLVincent Pit2010-03-311-5/+8
* | Avoid a segfault when reversing an empty array in-place.Rafael Garcia-Suarez2010-03-311-1/+1
|/
* Symbol S_no_symref_sv should be static (local to the compilation unit).Jan Dubois2010-02-231-1/+1
* Convert Perl_sv_pos_u2b_proper() to Perl_sv_pos_u2b_flags().Nicholas Clark2010-02-141-3/+3
* Remove a vestigial STRLEN case and convert a label to lowercase.Nicholas Clark2010-02-141-5/+5
* Removes 32-bit limit on substr arguments. The full range of IV and UV is avai...Eric Brine2010-02-141-50/+93
* Revert "[perl #62646] Maximum string length with substr"Rafael Garcia-Suarez2010-01-181-10/+7
* A fig leaf for calling sv_pos_u2b with IV* where it expects I32*.Craig A. Berry2010-01-161-1/+4
* [perl #62646] Maximum string length with substrZefram2010-01-151-7/+7
* Another C<return NORMAL> needed post bb4c52e023e0, missed from 805bf316c58a.Nicholas Clark2009-12-031-0/+1
* Add assertions that pp_padav and pp_padhv push scalars of the correct type.Gerard Goossen2009-11-251-0/+2
* Inline PL_no_symref_sv into its users. Deprecate the visible global variable.Nicholas Clark2009-11-151-2/+5
* add code for Unicode semantics for non-utf8 latin1 charsKarl Williamson2009-11-141-104/+632
* Fix compiler warning:Jerry D. Hedden2009-11-131-1/+1
* Add ENTER_with_name and LEAVE_with_name to automaticly check for matching ENT...Gerard Goossen2009-11-121-8/+8
* Optimize reversing an array in-placeVincent Pit2009-11-101-8/+67
* SvREFCNT_dec already checks if the SV is non-NULL (continued)Vincent Pit2009-11-081-4/+2
* move JMPENV_JUMP to die_where and mark it as "noreturn"Gerard Goossen2009-11-061-0/+1
* SvREFCNT_dec already checks if the SV is non-NULLVincent Pit2009-11-051-6/+3
* [perl #69875] Slow down split in scalar context :-)Father Chrysostomos2009-10-311-1/+3
* Avoid adding magic with rvalue $#aEric Brine2009-10-281-5/+12
* add an elipses to string/ref warnings when str longer than 32 charsYves Orton2009-10-261-2/+2
* Fix built-in prototype of each, keys, and valuesRafael Garcia-Suarez2009-10-221-0/+4
* Optimise if (%foo) to be faster than if(keys %foo)demerphq2009-10-151-0/+18