| Commit message (Expand) | Author | Age | Files | Lines |
* | misc blead stuff | Jarkko Hietaniemi | 2007-08-30 | 1 | -1/+1 |
* | [perl #43425] local $[: fix scoping during parser error handling. | Dave Mitchell | 2007-07-16 | 1 | -0/+6 |
* | MAD: disable constant subs when PL_madskills | Gerard Goossen | 2007-07-07 | 1 | -0/+3 |
* | Move the RXf_WHITE logic for split " " into the regex engine | Ævar Arnfjörð Bjarmason | 2007-06-28 | 1 | -21/+4 |
* | remove op_static | Paul Johnson | 2007-06-25 | 1 | -1/+1 |
* | miscellanea | Jarkko Hietaniemi | 2007-06-15 | 1 | -2/+2 |
* | Remove support for assertions and -A | Rafael Garcia-Suarez | 2007-06-05 | 1 | -20/+0 |
* | move PL_error_count into the PL_parser struct | Dave Mitchell | 2007-05-21 | 1 | -13/+17 |
* | move PL_multi_end into the PL_parser struct | Dave Mitchell | 2007-05-21 | 1 | -2/+2 |
* | Disable slurping assigned of split when PL_madskills | Gerard Goossen | 2007-05-12 | 1 | -5/+1 |
* | Disable !a&&b, !b||a optimalization when PL_madskills | Gerard Goossen | 2007-05-12 | 1 | -5/+2 |
* | Disable operator target setting for 'my' variables (OPpTARGET_MY) | Gerard Goossen | 2007-05-12 | 1 | -6/+4 |
* | move PL_in_my and PL_in_my_stash into the PL_parser struct | Dave Mitchell | 2007-05-12 | 1 | -18/+28 |
* | move PL_rsfp_filters into the parser struct | Dave Mitchell | 2007-05-12 | 1 | -1/+1 |
* | move PL_rsfp into the PL_parser struct | Dave Mitchell | 2007-05-11 | 1 | -1/+1 |
* | move PL_lex_state into the PL_parser struct | Dave Mitchell | 2007-05-05 | 1 | -1/+1 |
* | move some more variables into the PL_parser struct: | Dave Mitchell | 2007-05-04 | 1 | -2/+3 |
* | move PL_expect and PL_copline into the PL_parser structure | Dave Mitchell | 2007-05-04 | 1 | -32/+36 |
* | Re: mro status, etc | Brandon Black | 2007-04-30 | 1 | -4/+0 |
* | Fix potential precedence problem | Rafael Garcia-Suarez | 2007-04-24 | 1 | -1/+1 |
* | Fix a bug in dor assignment (@x //= 1 was triggering an | Rafael Garcia-Suarez | 2007-04-24 | 1 | -0/+1 |
* | Remove the code that handles assignment to state variables | Rafael Garcia-Suarez | 2007-04-24 | 1 | -48/+0 |
* | Re: [PATCH (incomplete)] Make regcomp use SV* sv, instead of char* exp, char*... | Ævar Arnfjörð Bjarmason | 2007-04-23 | 1 | -2/+1 |
* | Several members of struct yy_parser can go on a diet. Some I32s were | Nicholas Clark | 2007-04-21 | 1 | -2/+2 |
* | Where possible, use SvIV instead of SvIVX, SvNV instead of SvNVX, | Nicholas Clark | 2007-04-21 | 1 | -3/+3 |
* | Re: new C3 MRO patch | Brandon Black | 2007-04-19 | 1 | -4/+15 |
* | Fix two errors in the OP debugging code. Now all test errors relate | Nicholas Clark | 2007-04-12 | 1 | -2/+3 |
* | S_forget_pmop() only needs a flags argument for the ithreads case, | Nicholas Clark | 2007-04-10 | 1 | -1/+12 |
* | If PL_curpm is pointing to an op that is getting freed, reset it to | Nicholas Clark | 2007-04-10 | 1 | -0/+2 |
* | Under PERL_DEBUG_READONLY_OPS don't panic if you can't find the slab | Nicholas Clark | 2007-04-07 | 1 | -16/+27 |
* | Turn op_pmreplroot in struct pmop into a real union. | Nicholas Clark | 2007-04-07 | 1 | -17/+30 |
* | Remove a now un-needed goto from Perl_peep(). | Nicholas Clark | 2007-04-07 | 1 | -2/+1 |
* | Rejig Perl_peep() to assume that ops are optimised by default. The | Nicholas Clark | 2007-04-07 | 1 | -35/+11 |
* | Re-ordering OP_STUB in the switch statement in Perl_peep saves a goto. | Nicholas Clark | 2007-04-07 | 1 | -7/+6 |
* | Merge op_pmreplstart and op_pmstash/op_pmstashpv into a union in | Nicholas Clark | 2007-04-06 | 1 | -6/+11 |
* | assert() that OP_QR and OP_MATCH never set op_pmreplstart, which | Nicholas Clark | 2007-04-06 | 1 | -2/+4 |
* | Only append ?? match ops to the list used by reset. This saves memory | Nicholas Clark | 2007-04-06 | 1 | -14/+0 |
* | Avoid accessing free()d memory when calling reset in one thread, after | Nicholas Clark | 2007-04-06 | 1 | -1/+24 |
* | Remove op_pmnext from PMOPs, and instead store the list for reset as | Nicholas Clark | 2007-04-06 | 1 | -26/+39 |
* | S_op_destroy() was not static. Also tidy all other STATIC/static | Nicholas Clark | 2007-04-05 | 1 | -5/+3 |
* | Get further through the build with read-only optrees. Free()ing cops | Nicholas Clark | 2007-04-04 | 1 | -1/+5 |
* | Re: pmdynflags and thread safety | Yves Orton | 2007-04-04 | 1 | -12/+9 |
* | Re: [PATCH] MAD prototype checking | Gerard Goossen | 2007-04-03 | 1 | -0/+4 |
* | We may not even have a list of slabs when Perl_Slab_Free is called. | Nicholas Clark | 2007-04-02 | 1 | -3/+2 |
* | For Perl_Slab_Alloc(), eliminate the unused parameter 'm'. | Nicholas Clark | 2007-04-02 | 1 | -2/+1 |
* | The op slab allocator can call calloc() instead of malloc(), and save | Nicholas Clark | 2007-04-02 | 1 | -2/+3 |
* | Add a new compile option PERL_DEBUG_READONLY_OPS which marks the optree | Nicholas Clark | 2007-04-02 | 1 | -0/+108 |
* | Fix return value of state assignment ($x=state $y=$z). | Rafael Garcia-Suarez | 2007-03-27 | 1 | -0/+11 |
* | Make readline() default to *ARGV. | Rafael Garcia-Suarez | 2007-03-24 | 1 | -1/+22 |
* | Make readpipe default to $_ | Rafael Garcia-Suarez | 2007-03-24 | 1 | -1/+6 |