summaryrefslogtreecommitdiff
path: root/pp.c
Commit message (Expand)AuthorAgeFilesLines
* Make push, etc., work on tied scalarsFather Chrysostomos2011-04-181-0/+1
* Make keys $scalar an lvalueFather Chrysostomos2011-04-181-0/+6
* Make keys/value/each $scalar accept only unblessed refsFather Chrysostomos2011-04-181-45/+11
* fix for pp.c under win32 etcDavid Mitchell2011-04-181-2/+2
* Make push/shift $scalar accept only unblessed aryrefsFather Chrysostomos2011-04-181-4/+33
* Revert parts of c31c291..96b6b87Father Chrysostomos2011-04-081-1/+1
* Revert "[perl #87708] $tied / $tied under use integer"Father Chrysostomos2011-04-081-2/+3
* [perl #87708] $tied / $tied under use integerFather Chrysostomos2011-04-061-3/+2
* [perl #87708] $tied % $tied and $tied * $tied under use integerFather Chrysostomos2011-04-061-7/+7
* [perl #87708] use integer; $tied < $tiedFather Chrysostomos2011-04-061-1/+1
* [perl #87708] use integer; $tied > $tiedFather Chrysostomos2011-04-061-1/+1
* [perl #87708] use integer; $tied <= $tiedFather Chrysostomos2011-04-061-1/+1
* [perl #87708] use integer; $tied >= $tiedFather Chrysostomos2011-04-061-1/+1
* [perl #87708] use integer; $tied == $tiedFather Chrysostomos2011-04-061-1/+1
* [perl #87708] use integer; $tied != $tiedFather Chrysostomos2011-04-061-1/+1
* [perl #87708] use integer; $tied <=> $tiedFather Chrysostomos2011-04-061-1/+1
* [perl #87708] atan2 $tied, $tiedFather Chrysostomos2011-04-051-1/+1
* [perl #87336] lc/uc(first) fail to taint the returned stringFather Chrysostomos2011-03-311-0/+6
* [perl #82250] fix tainted (s)print formatDavid Mitchell2011-03-141-2/+0
* Fix [perl #85508] regression in print length undefDavid Leadbeater2011-03-061-4/+10
* Move some #definesKarl Williamson2011-02-271-6/+0
* [perl #77692] substr causes panic: sv_len_utf8 cache...Father Chrysostomos2011-02-101-1/+2
* [perl #81750] Perl 5.12: undef-as-hashref bugFather Chrysostomos2011-01-211-1/+6
* add GvCV_set() and GvGP_set() macros.David Mitchell2011-01-211-1/+1
* CH] Change usage of regex/op common to common namesKarl Williamson2011-01-161-1/+1
* Use multi-bit field for regex character setKarl Williamson2011-01-161-4/+6
* Generate "Unsupported socket function" stubs using PL_ppaddr.Nicholas Clark2011-01-091-0/+2
* regen/opcode.pl should only generate prototypes for pp_* functions that exist.Nicholas Clark2011-01-091-1/+1
* Fix typos (spelling errors) in Perl sources.Peter J. Acklam) (via RT2011-01-071-3/+3
* Convert tied SPLICE to using Perl_tied_method()Nicholas Clark2011-01-051-8/+3
* Avoid using OP_NAME() in unimplemented_op(), as it won't give useful strings.Nicholas Clark2010-12-311-2/+12
* standardise amagic method namingDavid Mitchell2010-12-311-2/+2
* Move do_chomp() from pp.c to doop.c, and make it static.Nicholas Clark2010-12-271-0/+167
* Merge the opcode bodies for chop/chomp and schop/schomp.Nicholas Clark2010-12-271-22/+9
* Merge Perl_do_chop() and Perl_do_chomp().Nicholas Clark2010-12-271-4/+4
* Convert Perl_do_chomp() to the same prototype as Perl_do_chop().Nicholas Clark2010-12-271-3/+5
* Refactor pp_chomp to process arguments in the same order as pp_chop.Nicholas Clark2010-12-271-4/+5
* only call amagic_deref_call() if we have toDavid Mitchell2010-12-161-5/+8
* don't upgrade overload IV return values to NVDavid Mitchell2010-12-151-9/+9
* No need to nest printfs. DIE() takes format strings.Rafael Garcia-Suarez2010-11-261-2/+2
* pp.c: tiny performance enhancementKarl Williamson2010-11-221-4/+4
* pp.c, utf8.c: Convert to use TWO_BYTE_UTF8_TO_UNIKarl Williamson2010-11-221-3/+3
* [perl #77926] Glob reification during localisationFather Chrysostomos2010-11-201-4/+4
* Eliminate the newname param from mro_package_movedFather Chrysostomos2010-11-201-1/+1
* Remove redundant conditional added by e530fb81dFather Chrysostomos2010-11-111-1/+1
* undef *glob should update isa(rev)Father Chrysostomos2010-11-111-6/+23
* Inline tryAMAGICunDEREF_var() into its callers and eliminate it.Nicholas Clark2010-11-031-2/+4
* y///rFather Chrysostomos2010-11-021-1/+6
* Expand AMG_CALLun_var() into all its users, and eliminate it.Nicholas Clark2010-11-021-2/+2
* Allow push/pop/keys/etc to act on referencesDavid Golden2010-10-311-2/+79