summaryrefslogtreecommitdiff
path: root/op.c
Commit message (Expand)AuthorAgeFilesLines
* 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
|\
| * Simplify code that sets $VERSION on the "package" lineRafael Garcia-Suarez2009-10-081-4/+1
| * Add 'package NAME VERSION' syntaxDavid Golden2009-10-061-0/+12
* | Properly return a syntax error instead of segfaulting if each/keys/values is ...Rafael Garcia-Suarez2009-10-081-12/+14
|/
* Fix when( scalar ... ) bugJosh ben Jore2009-09-281-0/+4
* split: Remove implicit split to @_Bo Borgerson2009-09-131-11/+1
* Fix [perl #66970] Incorrect coderef in MODIFY_CODE_ATTRIBUTESZefram2009-09-061-58/+30
* Reduce #ifdefs in Perl_ck_shiftBo Borgerson2009-09-041-8/+3
* finish more implementing -DB vs. -DxChip Salzenberg2009-08-301-3/+3
* Merge branch 'blead' of ssh://perl5.git.perl.org/perl into bleadChip Salzenberg2009-08-261-2/+2
|\