summaryrefslogtreecommitdiff
path: root/op.c
Commit message (Expand)AuthorAgeFilesLines
* glob crashes when %File::Glob:: is emptyFather Chrysostomos2010-06-071-5/+6
* Eliminate some newSV(0)s by merging the SV allocation with first modification.Nicholas Clark2010-05-301-5/+4
* add OPpDEREFed flag to avoid double mg_get()David Mitchell2010-05-251-0/+14
* Add s///r (non-destructive substitution).David Caldwell2010-05-221-1/+13
* Restore strict refs on stashes, removed by ce10b5d1ec5b5f68b0811018a415bc37.Nicholas Clark2010-05-211-11/+0
* Replace boolean use of HvFILL(hv) with HvTOTALKEYS(hv), which is equivalent.Nicholas Clark2010-05-211-1/+1
* Merge branch 'vincent/rvalue_stmt_given' into bleadVincent Pit2010-05-191-25/+31
|\
| * Make given() statements return the last evaluated expressionVincent Pit2010-01-031-25/+31
* | shift; optimizationRuslan Zakirov2010-05-031-2/+8
* | when(scalar) without argument should be a syntax error [perl #74114]Rafael Garcia-Suarez2010-04-131-4/+1
* | For evals, op_targ carry hint flags, which are pretty high when you'reRafael Garcia-Suarez2010-04-021-0/+1
* | [perl #73720] opt_scalarhv(or OP_BOOLKEYS) does not workDavid Leadbeater2010-03-271-2/+2
* | Add some missing dVAR'sMarcus Holland-Moritz2010-02-201-0/+1
* | The new lvalue warning should not be turned on by defaultRafael Garcia-Suarez2010-01-121-1/+1
* | Retain builtin attributes from pre-declaration. Fixes [perl #68758].Gerard Goossen2010-01-101-1/+2
* | Ignore a lvalue attribute after the subroutine has been defined, and warn abo...Gerard Goossen2010-01-101-1/+3
|/
* Make eval {} compile directly to OP_ENTERTRYRafael Garcia-Suarez2009-12-201-2/+1
* [perl #70171] 5.10.0 -> 5.10.1 Regression in fafafbaf70 (Big slowdown in 5.10...Father Chrysostomos2009-12-141-1/+1
* proper error on "grep $x (1,2,3)". Solves [perl #37314]Gerard Goossen2009-12-081-4/+4
* Make split warn in void contextRafael Garcia-Suarez2009-11-291-0/+11
* Force OP_REQUIRE to scalar context at the end of ck_require and don't let it ...Gerard Goossen2009-11-211-10/+2
* Missing static storage class for some new static functionsRafael Garcia-Suarez2009-11-201-2/+2
* add op class assertions to newXXXOP functionsGerard Goossen2009-11-161-0/+37
* Make the style of pad_add_name's flags consistent with pad_new's and pad_tidy's.Nicholas Clark2009-11-151-2/+2
* Convert pad_check_dup() to static linkage, and call it from Perl_pad_add_name().Nicholas Clark2009-11-151-4/+1
* Fix compiler warning:Jerry D. Hedden2009-11-131-1/+1
* As our $_; is forced into main::, it should warn as a redeclaration.Nicholas Clark2009-11-121-1/+1
* Make diag.t skip the warning I just fixedVincent Pit2009-11-111-0/+1
* Fix misformed UVxf format in op.cVincent Pit2009-11-101-1/+1
* Optimize reversing an array in-placeVincent Pit2009-11-101-0/+28
* Factor the "is this an in-place array operator construct" logic into a new is...Vincent Pit2009-11-101-56/+74
* Add mingw64 supportSisyphus2009-11-091-1/+1
* Add length and flags arguments to Perl_pad_add_name().Nicholas Clark2009-11-091-4/+3
* Add length and flags arguments to Perl_pad_check_dup().Nicholas Clark2009-11-091-1/+2
* Add length and flags arguments to Perl_allocmy().Nicholas Clark2009-11-091-6/+14
* Tweak the GV downgrading of f7461760 to avoid free or nearly freed GVs.Nicholas Clark2009-11-081-2/+19
* SvREFCNT_inc already checks if the SV is non-NULLVincent Pit2009-11-081-2/+1
* Bareword sub lookupsZefram2009-11-081-14/+34
* Add length and flags arguments to Perl_pad_findmy(), moving it to the public ...Nicholas Clark2009-11-071-4/+4
* Add a line directive to op.c and perl.c such that error messages refer to the...Gerard Goossen2009-11-061-0/+1
* $#array should be accepted as a lvalue sub return value.Rafael Garcia-Suarez2009-10-281-1/+6
* Make defined %hash on a non-lexical (also) generate a deprecated warning.Nicholas Clark2009-10-241-5/+0
* Bare readdir in while loop now sets $_Brad Gilbert2009-10-221-4/+8
* Enable deprecation warnings by default.Nicholas Clark2009-10-161-10/+10
* Optimise if (%foo) to be faster than if(keys %foo)demerphq2009-10-151-3/+85
* Remove category 'syntax' from 5 warnings that should just be in 'deprecated'.Nicholas Clark2009-10-131-6/+6
* Add Perl_ck_warner_d(), which combines Perl_ckwarn_d() and Perl_warner().Nicholas Clark2009-10-121-7/+4
* Add Perl_ck_warner(), which combines Perl_ckwarn() and Perl_warner().Nicholas Clark2009-10-121-64/+53
* Disable strictures while setting $VERSION in a "package" statementRafael Garcia-Suarez2009-10-081-0/+3
* Merge branch 'feature/package-name-version' into bleadRafael Garcia-Suarez2009-10-081-0/+9
|\