summaryrefslogtreecommitdiff
path: root/op.c
Commit message (Expand)AuthorAgeFilesLines
* 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
|\
| * Use less constness in MAD codeRafael Garcia-Suarez2009-08-261-2/+2
* | New debugging flag -DB now dumps subroutine definitions,Chip Salzenberg2009-08-261-3/+3
|/
* In Perl_newATTRSUB(), refactor the calls to gv_fetch*(), reducing if blocks.Nicholas Clark2009-08-221-14/+10
* In Perl_newATTRSUB(), we know the lengths, so can avoid gv_fetchpv().Nicholas Clark2009-08-221-4/+11
* Explain that the load_module() import list must be NULL terminatedJan Dubois2009-08-141-1/+5
* [perl #68108] : also fix if/else constant foldingFather Chrysostomos2009-08-071-1/+3
* Promote blocks resulting from constant folding to first-class do { } blocksVincent Pit2009-08-041-0/+2
* Introduce "delete local"Vincent Pit2009-07-251-0/+2
* [perl #61520] Segfault in debugger with tr// and UTF8David Mitchell2009-07-111-0/+1
* Add a pluggable hook in op_free()Vincent Pit2009-07-081-0/+6
* Add test to make sure everything that outputs an exception or warning has a m...James Mastros2009-06-271-1/+2
* Fix [RT#66098] -- stricter checking on SvIVX exposed a lack of SvIOK checkAlex Vandiver2009-05-281-1/+1
* Merge branch 'smartmatch' into bleadRafael Garcia-Suarez2009-05-131-2/+6
|\