| Commit message (Expand) | Author | Age | Files | Lines |
* | Silence a load of "value computed is not used" warnings | Rafael Garcia-Suarez | 2007-09-21 | 1 | -1/+2 |
* | Get mad compiling as C++. (At least for me) | Nicholas Clark | 2007-09-20 | 1 | -1/+1 |
* | Add the missing assignment to op_last that change 31798 missed out. | Nicholas Clark | 2007-09-12 | 1 | -0/+5 |
* | state variables shouldn't be shared between anon subs | Dave Mitchell | 2007-09-09 | 1 | -0/+6 |
* | For now, forbid all list assignment initialisation of state variables, | Nicholas Clark | 2007-09-08 | 1 | -0/+50 |
* | Make 'state $$' etc report 'Can't use global $$ in "state"' (not "my") | Nicholas Clark | 2007-09-08 | 1 | -3/+5 |
* | state $foo if 0 shouldn't warn. Spotted by Abigail. | Rafael Garcia-Suarez | 2007-09-06 | 1 | -0/+1 |
* | Make state $zok = slosh(); behave as the Perl 6 design with an implicit | Nicholas Clark | 2007-09-06 | 1 | -0/+24 |
* | 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 |