| Commit message (Expand) | Author | Age | Files | Lines |
* | Add Dave's explainations of why certain pointers are always non-NULL, | Nicholas Clark | 2006-04-17 | 1 | -0/+22 |
* | generalize the 'continue on success' mechanism of deferred REs | Dave Mitchell | 2006-04-16 | 1 | -51/+56 |
* | abstract regmatch slab access with SLAB_FIRST and SLAB_LAST macros | Dave Mitchell | 2006-04-16 | 1 | -7/+10 |
* | Reverting change #27791 which may cause corruption addition corruption | Steve Peters | 2006-04-14 | 1 | -1/+1 |
* | eliminate PL_regbol PL_regtill PL_regnarrate PL_reg_ganch PL_reg_sv | Dave Mitchell | 2006-04-13 | 1 | -79/+83 |
* | Add another NULL check thanks to Coverity. | Steve Peters | 2006-04-13 | 1 | -1/+1 |
* | regexec.c: (Coverity) add NULL check | Jarkko Hietaniemi | 2006-04-13 | 1 | -1/+1 |
* | regexec.c: (Coverity) move NULL check even earlier | Jarkko Hietaniemi | 2006-04-13 | 1 | -3/+10 |
* | eliminate PL_reg_re | Dave Mitchell | 2006-04-13 | 1 | -32/+24 |
* | [perl #38906] Regex engine does not release MINMOD | Animator | 2006-04-12 | 1 | -0/+3 |
* | Remove the final recursion path from S_regmatch: (??{...}) | Dave Mitchell | 2006-04-12 | 1 | -105/+170 |
* | regexec.c: move NULL check earlier to make Coverity happier | Jarkko Hietaniemi | 2006-04-11 | 1 | -6/+7 |
* | True consting goodness in regexes | Andy Lester | 2006-04-10 | 1 | -19/+18 |
* | fix potential null deref introduced by change #27716 | Dave Mitchell | 2006-04-08 | 1 | -1/+1 |
* | (??{...}) didn't always restore PL_reg_re. | Dave Mitchell | 2006-04-05 | 1 | -1/+3 |
* | eliminate PL_regprecomp, PL_regprogram, PL_regnpar and PL_regdata | Dave Mitchell | 2006-04-05 | 1 | -52/+38 |
* | restructure the EVAL branch of regmatch() to minimise local var scope | Dave Mitchell | 2006-04-05 | 1 | -81/+86 |
* | undo #27700 and add a missing Safefree() | Dave Mitchell | 2006-04-03 | 1 | -1/+3 |
* | Removed unused code in regexec.c | Andy Lester | 2006-04-03 | 1 | -3/+2 |
* | anonymous unions aren't legal ANSI c | Dave Mitchell | 2006-04-03 | 1 | -247/+247 |
* | whoops, change 27691 blew away the regexec.c changes from 27688 | Dave Mitchell | 2006-04-02 | 1 | -8/+8 |
* | subsume CURCUR (current curly) struct within the main regmatch_state | Dave Mitchell | 2006-04-02 | 1 | -69/+68 |
* | Re: [perl #38293] chr(65535) should be allowed in regexes | SADAHIRO Tomoyuki | 2006-04-02 | 1 | -8/+8 |
* | make parts of struct regmatch_state unions | Dave Mitchell | 2006-04-02 | 1 | -213/+215 |
* | use slabs to allocate save state space in regmatch() | Dave Mitchell | 2006-04-02 | 1 | -548/+468 |
* | Clean up regexec.c, and remove two functions | Andy Lester | 2006-03-30 | 1 | -33/+11 |
* | Silence 3 (spurious) gcc warnings about "maybe used uninitialized". | Nicholas Clark | 2006-03-25 | 1 | -3/+3 |
* | Free the regexp state when exiting "recursion". | Nicholas Clark | 2006-03-25 | 1 | -0/+1 |
* | make S_regmatch() iterative rather than recursive. | Dave Mitchell | 2006-03-24 | 1 | -152/+502 |
* | remove idential code branch from regmatch() | Dave Mitchell | 2006-03-22 | 1 | -23/+1 |
* | merge the TRIEF/TRIEFL and TRIE branches in regmatch(), | Dave Mitchell | 2006-03-20 | 1 | -128/+80 |
* | Restore a bit of change 27533 that change 27534 inadvertently unwound. | Nicholas Clark | 2006-03-17 | 1 | -3/+6 |
* | inline, then delete, S_regrepeat_hard() | Dave Mitchell | 2006-03-17 | 1 | -74/+43 |
* | sv_find() returning false, followed by sv_magic() to add the magic, | Nicholas Clark | 2006-03-17 | 1 | -3/+6 |
* | reduce S_regrepeat_hard() callers from 3 to 1 | Dave Mitchell | 2006-03-17 | 1 | -3/+7 |
* | The Coverity audit is upset that the scream_olds variable is not | Steve Peters | 2006-03-09 | 1 | -1/+1 |
* | Trying my "remove the pTHXes" patch again | Andy Lester | 2006-02-09 | 1 | -8/+9 |
* | Re: [PATCH] s/Null(gv|hv|sv)/NULL/g | Steven Schubiger | 2006-02-03 | 1 | -8/+8 |
* | Re: [PATCH] s/Null(av|ch)/NULL/g | Steven Schubiger | 2006-02-02 | 1 | -8/+8 |
* | Change all NEWSV() to newSV() in the core and non-dual-lived modules. | Steve Hay | 2006-01-18 | 1 | -2/+1 |
* | It's the Barbie bus patch | Andy Lester | 2006-01-10 | 1 | -45/+37 |
* | sprinkle dVAR | Jarkko Hietaniemi | 2006-01-06 | 1 | -0/+15 |
* | Update copyrights for files modified in 2006 | Rafael Garcia-Suarez | 2006-01-02 | 1 | -1/+1 |
* | Making 0 pointers to NULLs | Andy Lester | 2006-01-01 | 1 | -3/+3 |
* | Re: [perl #37836] Simple Regex causes SEGV when run on specific data | SADAHIRO Tomoyuki | 2005-12-05 | 1 | -3/+7 |
* | Clarification and cleanup of the XS SWASHGET code | SADAHIRO Tomoyuki | 2005-12-05 | 1 | -1/+1 |
* | The regexp engine should check SV flags rather than SV type for | Nicholas Clark | 2005-11-30 | 1 | -1/+1 |
* | Re: [perl #37688] Unexpected regex failure. | Hugo van der Sanden | 2005-11-16 | 1 | -0/+1 |
* | Revert patch #25993. | Rafael Garcia-Suarez | 2005-11-04 | 1 | -2/+1 |
* | [perl #19049] Incorrect $` after replacement | Andreas König | 2005-11-04 | 1 | -1/+2 |