| Commit message (Expand) | Author | Age | Files | Lines |
* | REGEXPs are now stored directly in PL_regex_padav, rather than | Nicholas Clark | 2008-01-11 | 1 | -1/+1 |
* | It seems that you don't need to reference count PL_reg_curpm without | Nicholas Clark | 2008-01-10 | 1 | -0/+5 |
* | The correct solution is to reference count the regexp in PL_reg_curpm, | Nicholas Clark | 2008-01-10 | 1 | -3/+6 |
* | Change 32899 missed the other double-reference count. | Nicholas Clark | 2008-01-09 | 1 | -1/+1 |
* | Correct a long-standing ithreads reference counting anonamly - the | Nicholas Clark | 2008-01-08 | 1 | -1/+1 |
* | Clarify the use of SVf_BREAK on PL_reg_curpm. | Nicholas Clark | 2008-01-07 | 1 | -1/+2 |
* | Make REGEXP a type distinct from SV. (Much like AV, CV, GV, HV). | Nicholas Clark | 2008-01-05 | 1 | -5/+5 |
* | Fix regexec.c so $^N and $+ are correctly updated so that they work properly ... | Moritz Lenz | 2008-01-05 | 1 | -2/+13 |
* | Convert all accesses of the member paren_names of struct regexp to | Nicholas Clark | 2008-01-05 | 1 | -2/+2 |
* | Abolish RXf_UTF8. Store the UTF-8-ness of the pattern with SvUTF8(). | Nicholas Clark | 2008-01-05 | 1 | -1/+0 |
* | Make Perl_pregcomp() use SvUTF8() of the pattern, rather than the flag | Nicholas Clark | 2008-01-05 | 1 | -1/+13 |
* | s/re/rx/ in an assert overlooked during recent renovations | Yves Orton | 2008-01-05 | 1 | -1/+1 |
* | Replace all reads of RXf_UTF8 with RX_UTF8(). | Nicholas Clark | 2008-01-05 | 1 | -3/+3 |
* | Add RX_UTF8(), which is effectively SvUTF8() but for regexps. | Nicholas Clark | 2008-01-05 | 1 | -6/+6 |
* | Make struct regexp the body of SVt_REGEXP SVs, REGEXPs become SVs, | Nicholas Clark | 2008-01-02 | 1 | -34/+46 |
* | Wrap all deferences of struct regexp* in macros RX_*() [and for | Nicholas Clark | 2008-01-02 | 1 | -8/+8 |
* | Wrap all accesses to the members precomp and prelen of struct regexp in | Nicholas Clark | 2007-12-28 | 1 | -2/+2 |
* | First class regexps. | Nicholas Clark | 2007-12-28 | 1 | -6/+18 |
* | scalars used in postponed subexpressions aren't first class regexps, | Nicholas Clark | 2007-12-27 | 1 | -1/+3 |
* | assert() that the sv_unmagic() in S_regmatch() is unneeded. | Nicholas Clark | 2007-12-27 | 1 | -2/+12 |
* | Regexps are now orange. | Nicholas Clark | 2007-12-27 | 1 | -1/+3 |
* | Comment out a now unused variable | Rafael Garcia-Suarez | 2007-12-17 | 1 | -1/+2 |
* | Fix various bugs in regex engine with mixed utf8/latin pattern and strings. R... | Yves Orton | 2007-12-17 | 1 | -27/+61 |
* | Re: [perl #47195] $1 suddenly tainted after regexp on utf-8 string | Rick Delaney | 2007-11-07 | 1 | -1/+1 |
* | misc blead stuff | Jarkko Hietaniemi | 2007-08-30 | 1 | -2/+2 |
* | TRIE must use 'yes' state transitions when more than one match possible to en... | Marcus Holland-Moritz | 2007-08-18 | 1 | -10/+2 |
* | s/\bunicode\b/Unicode/; # For everything not dual life | Nicholas Clark | 2007-06-24 | 1 | -2/+2 |
* | [perl #43159] 5.9.4 regexp capturing wrongly | Dave Mitchell | 2007-06-18 | 1 | -6/+0 |
* | add test for, and update comments for, old defined($1) oddity. | Dave Mitchell | 2007-06-18 | 1 | -8/+6 |
* | Silence another VC++ compiler warning (signed/unsigned mismatch in ==) | Steve Hay | 2007-06-05 | 1 | -1/+1 |
* | Re: [perl #43015] regex /.*\z/ doesn't matches strings ending with \n | Yves Orton | 2007-05-29 | 1 | -1/+1 |
* | tweak some regexp params to avoid warnings | Yves Orton | 2007-05-02 | 1 | -1/+1 |
* | Signedness nit, found by Jarkko | Rafael Garcia-Suarez | 2007-04-30 | 1 | -1/+1 |
* | Re: [PATCH] Cleanup of the regexp API | Ævar Arnfjörð Bjarmason | 2007-04-30 | 1 | -3/+3 |
* | Re: Analysis of problems with mixed encoding case insensitive matches in rege... | Yves Orton | 2007-04-27 | 1 | -22/+15 |
* | Fix a signed/unsigned comparison warning | Rafael Garcia-Suarez | 2007-04-27 | 1 | -2/+1 |
* | Avoid a SIGBUS caused by passing a U32 pointer to utf8_to_uvchr(), | Nicholas Clark | 2007-04-26 | 1 | -2/+3 |
* | Re: Analysis of problems with mixed encoding case insensitive matches in rege... | Yves Orton | 2007-04-26 | 1 | -0/+27 |
* | Re: [PATCH (incomplete)] Make regcomp use SV* sv, instead of char* exp, char*... | Ævar Arnfjörð Bjarmason | 2007-04-23 | 1 | -3/+1 |
* | Change meaning of \v, \V, and add \h, \H to match Perl6, add \R to match PCRE... | Yves Orton | 2007-04-23 | 1 | -1/+135 |
* | Re: pmdynflags and thread safety | Yves Orton | 2007-04-04 | 1 | -4/+3 |
* | free backtrack track when on unexpected exit, eg /(?{ die })/ | Dave Mitchell | 2007-04-01 | 1 | -20/+27 |
* | fix $^R scoping bug. | Dave Mitchell | 2007-04-01 | 1 | -17/+13 |
* | In struct regexp replace the two arrays of I32s accessed via startp | Nicholas Clark | 2007-03-26 | 1 | -61/+52 |
* | Move the declaration of two variables into the only block that uses | Nicholas Clark | 2007-03-26 | 1 | -4/+2 |
* | startp and endp can allocate their array of I32s from the same block of | Nicholas Clark | 2007-03-24 | 1 | -2/+2 |
* | Resolve PL_curpm issues with (??{}) and fix corruption of match results when ... | Yves Orton | 2007-03-22 | 1 | -15/+20 |
* | feel the the baà (encoding problems in the regex engine) | Yves Orton | 2007-03-20 | 1 | -1/+1 |
* | The dMY_CXT added in change 27938 isn't needed when in the PERL_CORE. | Nicholas Clark | 2007-03-13 | 1 | -2/+2 |
* | Define and initialise reg_name only once. | Nicholas Clark | 2007-03-03 | 1 | -2/+2 |