This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Move PL_sh_path to perl.h (except for OS/2), as it's const char[]
[perl5.git] / pp.c
2011-06-11 Nicholas ClarkDon't allow study on an FBM scalar, to give more flexib...
2011-06-04 Father ChrysostomosFix several array-returning bugs in lvalue subs
2011-05-19 Nicholas ClarkRemove duplicate code from pp_study(), caused by a4f4e9...
2011-05-19 Nicholas Clarkstudy uses I32 internally for offsets, so should be...
2011-05-18 Michael WittenClean: Actually use HvUSEDKEYS() instead of HvKEYS()
2011-04-19 Father ChrysostomosMake push, etc., work on tied scalars
2011-04-19 Father ChrysostomosMake keys $scalar an lvalue
2011-04-19 Father ChrysostomosMake keys/value/each $scalar accept only unblessed...
2011-04-18 David Mitchellfix for pp.c under win32 etc
2011-04-18 Father ChrysostomosMake push/shift $scalar accept only unblessed aryrefs
2011-04-08 Father ChrysostomosRevert parts of c31c291..96b6b87
2011-04-08 Father ChrysostomosRevert "[perl #87708] $tied / $tied under use integer"
2011-04-06 Father Chrysostomos[perl #87708] $tied / $tied under use integer
2011-04-06 Father Chrysostomos[perl #87708] $tied % $tied and $tied * $tied under...
2011-04-06 Father Chrysostomos[perl #87708] use integer; $tied < $tied
2011-04-06 Father Chrysostomos[perl #87708] use integer; $tied > $tied
2011-04-06 Father Chrysostomos[perl #87708] use integer; $tied <= $tied
2011-04-06 Father Chrysostomos[perl #87708] use integer; $tied >= $tied
2011-04-06 Father Chrysostomos[perl #87708] use integer; $tied == $tied
2011-04-06 Father Chrysostomos[perl #87708] use integer; $tied != $tied
2011-04-06 Father Chrysostomos[perl #87708] use integer; $tied <=> $tied
2011-04-06 Father Chrysostomos[perl #87708] atan2 $tied, $tied
2011-03-31 Father Chrysostomos[perl #87336] lc/uc(first) fail to taint the returned...
2011-03-14 David Mitchell[perl #82250] fix tainted (s)print format
2011-03-06 David LeadbeaterFix [perl #85508] regression in print length undef
2011-02-28 Karl WilliamsonMove some #defines
2011-02-10 Father Chrysostomos[perl #77692] substr causes panic: sv_len_utf8 cache...
2011-01-21 Father Chrysostomos[perl #81750] Perl 5.12: undef-as-hashref bug
2011-01-21 David Mitchelladd GvCV_set() and GvGP_set() macros.
2011-01-17 Karl WilliamsonCH] Change usage of regex/op common to common names
2011-01-16 Karl WilliamsonUse multi-bit field for regex character set
2011-01-09 Nicholas ClarkGenerate "Unsupported socket function" stubs using...
2011-01-09 Nicholas Clarkregen/opcode.pl should only generate prototypes for...
2011-01-07 Peter J. Acklam... Fix typos (spelling errors) in Perl sources.
2011-01-05 Nicholas ClarkConvert tied SPLICE to using Perl_tied_method()
2010-12-31 Nicholas ClarkAvoid using OP_NAME() in unimplemented_op(), as it...
2010-12-31 David Mitchellstandardise amagic method naming
2010-12-27 Nicholas ClarkMove do_chomp() from pp.c to doop.c, and make it static.
2010-12-27 Nicholas ClarkMerge the opcode bodies for chop/chomp and schop/schomp.
2010-12-27 Nicholas ClarkMerge Perl_do_chop() and Perl_do_chomp().
2010-12-27 Nicholas ClarkConvert Perl_do_chomp() to the same prototype as Perl_d...
2010-12-27 Nicholas ClarkRefactor pp_chomp to process arguments in the same...
2010-12-16 David Mitchellonly call amagic_deref_call() if we have to
2010-12-15 David Mitchelldon't upgrade overload IV return values to NV
2010-11-26 Rafael Garcia-SuarezNo need to nest printfs. DIE() takes format strings.
2010-11-22 Karl Williamsonpp.c: tiny performance enhancement
2010-11-22 Karl Williamsonpp.c, utf8.c: Convert to use TWO_BYTE_UTF8_TO_UNI
2010-11-21 Father Chrysostomos[perl #77926] Glob reification during localisation
2010-11-21 Father ChrysostomosEliminate the newname param from mro_package_moved
2010-11-11 Father ChrysostomosRemove redundant conditional added by e530fb81d
2010-11-11 Father Chrysostomosundef *glob should update isa(rev)
2010-11-03 Nicholas ClarkInline tryAMAGICunDEREF_var() into its callers and...
2010-11-03 Father Chrysostomosy///r
2010-11-02 Nicholas ClarkExpand AMG_CALLun_var() into all its users, and elimina...
2010-11-01 David GoldenAllow push/pop/keys/etc to act on references
2010-11-01 Father Chrysostomos[perl #78580] Stop a simple *glob from calling get...
2010-10-30 Father ChrysostomosSwitch the core MRO code over to HvENAME
2010-10-26 Father Chrysostomos-$zero should not modify $zero
2010-10-25 Father Chrysostomos[perl #77498] Assignment ignores magick when the RHS...
2010-10-24 Father Chrysostomos[perl #77810] Scalars vs globs
2010-10-15 Florian RagwitzMake splice invoke set magic
2010-10-04 Father Chrysostomos[perl #20661] Constant strings representing a number...
2010-10-04 Renée Bäcker[perl #57706] Unary minus on 'numeric' inputs like...
2010-09-25 Father Chrysostomos[perl #76814] FETCH called twice - !
2010-09-25 Father Chrysostomos[perl #76814] FETCH called twice - string comparison ops
2010-09-16 Florian RagwitzBack out the mauve module and related changes
2010-09-06 David Mitchell$ref++, $ref-- leaked referent
2010-08-30 Yves Ortonuse more efficient sv_reftype_len() interface
2010-08-20 Ben MorrowFix my $x = 3; $x = length(undef);.
2010-08-13 Eric BrineFix untimely destruction introduced by lvalue ops ...
2010-07-28 Nicholas ClarkMake srand() return "0 but true" for 0, for backwards...
2010-07-28 Karl Williamsonsrand: change to return its seed
2010-07-18 David Mitchelladd CvGV_set() macro and make CvGV() rvalue only
2010-07-14 David Mitchellprotect CvGV weakref with backref
2010-07-06 Bo LindberghCode for allowing uppercase X/B in hexadecimal/binary...
2010-06-27 Nicholas ClarkAdd Perl_croak_no_modify() to implement Perl_croak...
2010-06-27 Nicholas ClarkReturn DIE(...) to *return*ing Perl_die(...).
2010-06-25 Father ChrysostomosRT 75902: Add prototypes for tie() and untie() to allow...
2010-06-15 Karl Williamsonuc(): Handle Greek YPOGEGRAMMENI
2010-06-04 David Mitchellrename DM_ARRAY flag to DM_ARRAY_ISA
2010-06-03 Vincent PitMake pp_reverse fetch the lexical $_ from the correct pad
2010-05-25 David Mitchelladd OPpDEREFed flag to avoid double mg_get()
2010-05-25 Father Chrysostomo... Deref ops ignore get-magic when SvROK(sv)
2010-05-21 David Mitchellfollowup to magic/overload fix
2010-05-21 David Mitchellmake overload respect get magic
2010-05-03 Ruslan Zakirovshift; optimization
2010-04-26 Robin Barkeravoid use of operator name in macro
2010-04-15 David Mitchelluse cBOOL for bool casts
2010-04-13 David MitchellMerge commit 'origin/davem/post-5.12' into blead
2010-04-10 Rafael Garcia-Suarez[perl #74168] Assertion failure when emitting a strictu...
2010-03-31 Vincent PitDon't initialize end in pp_reverse when begin is NULL
2010-03-31 Rafael Garcia-SuarezAvoid a segfault when reversing an empty array in-place.
2010-03-21 David Mitchell[perl #45167] Taint removal by sprintf
2010-02-23 Jan DuboisSymbol S_no_symref_sv should be static (local to the...
2010-02-14 Nicholas ClarkConvert Perl_sv_pos_u2b_proper() to Perl_sv_pos_u2b_fla...
2010-02-14 Nicholas ClarkRemove a vestigial STRLEN case and convert a label...
2010-02-14 Eric BrineRemoves 32-bit limit on substr arguments. The full...
2010-01-18 Rafael Garcia-SuarezRevert "[perl #62646] Maximum string length with substr"
2010-01-16 Craig A. BerryA fig leaf for calling sv_pos_u2b with IV* where it...
2010-01-15 Zefram[perl #62646] Maximum string length with substr
next