summaryrefslogtreecommitdiff
path: root/pp.c
Commit message (Expand)AuthorAgeFilesLines
* [perl #36875] [PATCH] scalar reverse undef does not warn (was: Certain string...Bram2008-06-011-1/+6
* Revert change #33676, likely to break atan(-0,0) on some platformsRafael Garcia-Suarez2008-04-141-4/+1
* Make atan2(0,0) return undefRafael Garcia-Suarez2008-04-141-1/+4
* Double magic with substrVincent Pit2008-03-311-1/+1
* Use sv_setpvs() like a few lines before since change #33557Rafael Garcia-Suarez2008-03-251-1/+1
* Re: [PATCH] Double warning with perl -we 'my $a; substr $a, 0, 10,Vincent Pit2008-03-251-0/+2
* use svtypeRobin Barker2008-02-141-2/+2
* assert() that every NN argument is not NULL. Otherwise we have theNicholas Clark2008-02-121-0/+4
* In pp_split(), eliminate most (all?) of the conditional calls toNicholas Clark2008-02-011-26/+16
* Make lc/uc/lcfirst/ucfirst warn when passed undef.Rafael Garcia-Suarez2008-01-281-0/+6
* Re-order so that the !SvOK() case is last (which should be rare)Nicholas Clark2008-01-131-6/+4
* For 5.12: saner behaviour for `length`Nicholas Clark2008-01-121-11/+21
* Fix compilation issues and warnings with exotic configuration.Marcus Holland-Moritz2008-01-061-1/+1
* Replace all reads of RXf_UTF8 with RX_UTF8().Nicholas Clark2008-01-051-2/+2
* Add macros mPUSHs() and mXPUSHs() for pushing SVs on the stackMarcus Holland-Moritz2008-01-041-4/+4
* Add newSVpvs_flags() as a wrapper to newSVpvn_flags(), and reworkNicholas Clark2008-01-031-1/+1
* Extend newSVpvn_flags() to also call sv_2mortal() if SVs_TEMP is set inNicholas Clark2008-01-031-4/+6
* Possible future bugs found by the creation of newSVpvn_flags().Nicholas Clark2008-01-031-1/+1
* Add a new function newSVpvn_flags(), which takes a third parameter ofNicholas Clark2008-01-021-29/+10
* Wrap all deferences of struct regexp* in macros RX_*() [and forNicholas Clark2008-01-021-26/+26
* Change Perl_av_iter_p() to return IV* rather than I32* (which meansNicholas Clark2007-12-291-1/+1
* Take code that occurs in three places to take a scalar and ready it toNicholas Clark2007-12-261-7/+1
* Eliminate SVt_RV, and use SVt_IV to store plain references.Nicholas Clark2007-12-261-3/+3
* Swap SVt_RV and SVt_NV in the SV ordering.Nicholas Clark2007-12-261-1/+1
* Implement each @array.Nicholas Clark2007-12-201-0/+61
* Re: overload64.t failuresRick Delaney2007-10-211-9/+17
* Fix overloading for 64-bit ints (revised)Jerry D. Hedden2007-10-191-87/+87
* pp_int should treat refs as UVs (not IVs)Jerry D. Hedden2007-10-111-3/+3
* Re: [perl #46011] [RESOLVED] overload "0+" doesn't handle integer resultsRick Delaney2007-10-081-0/+2
* Re: [perl #46011] overload "0+" doesn't handle integer resultsRick Delaney2007-10-071-9/+25
* Remove the 'err' keywordRafael Garcia-Suarez2007-09-071-1/+1
* Make state $zok = slosh(); behave as the Perl 6 design with an implicitNicholas Clark2007-09-061-0/+13
* Re: optimize push @ISA, (was Re: parent.pm at http://corion.net/perl-dev)Brandon Black2007-08-311-0/+5
* misc blead stuffJarkko Hietaniemi2007-08-301-1/+1
* Re: [PATCH] Optimize split //Ævar Arnfjörð Bjarmason2007-08-121-14/+24
* Optimize split //Ævar Arnfjörð Bjarmason2007-08-091-0/+37
* Fix [perl #43207] lc() or uc() inside sort affect the return value.Rafael Garcia-Suarez2007-06-141-3/+3
* Re: mro status, etcBrandon Black2007-04-301-0/+9
* Where possible, use SvIV instead of SvIVX, SvNV instead of SvNVX,Nicholas Clark2007-04-211-6/+6
* [perl #42614] NAN_COMPARE_BROKEN.DIV_BY_NAN_BUG (with patch) Patrick Dugnolle2007-04-201-0/+4
* fix casting warning in pp_ord()Dave Mitchell2007-04-151-1/+1
* Change 18797 (Patch for [perl #9402], known also as "glibc _moddi3 bugNicholas Clark2007-04-121-3/+6
* Turn op_pmreplroot in struct pmop into a real union.Nicholas Clark2007-04-071-4/+6
* Re: pmdynflags and thread safetyYves Orton2007-04-041-8/+8
* Back out changes 30762 and 30763Rafael Garcia-Suarez2007-03-291-4/+3
* stop the cargo cult of (MEM_SIZE)~0Jarkko Hietaniemi2007-03-271-1/+1
* In struct regexp replace the two arrays of I32s accessed via startpNicholas Clark2007-03-261-4/+4
* Nit to change 30762 by Gisle.Rafael Garcia-Suarez2007-03-261-1/+1
* Re: substr($megabytes, 30) = Yitzchak Scott-Thoennes2007-03-261-3/+4
* Add a new API function newSV_type, to replace the idiom:Nicholas Clark2007-02-181-2/+1