| Commit message (Expand) | Author | Age | Files | Lines |
* | Extend newSVpvn_flags() to also call sv_2mortal() if SVs_TEMP is set in | Nicholas Clark | 2008-01-03 | 1 | -3/+4 |
* | Possible future bugs found by the creation of newSVpvn_flags(). | Nicholas Clark | 2008-01-03 | 1 | -6/+2 |
* | Add a new function newSVpvn_flags(), which takes a third parameter of | Nicholas Clark | 2008-01-02 | 1 | -12/+7 |
* | Make struct regexp the body of SVt_REGEXP SVs, REGEXPs become SVs, | Nicholas Clark | 2008-01-02 | 1 | -54/+65 |
* | Convert some "regexp" and "struct regexp" to REGEXP where they are | Nicholas Clark | 2008-01-02 | 1 | -5/+5 |
* | Wrap all deferences of struct regexp* in macros RX_*() [and for | Nicholas Clark | 2008-01-02 | 1 | -19/+19 |
* | The position of the modifier flag bits is actually encoded by a right | Nicholas Clark | 2007-12-29 | 1 | -1/+2 |
* | Wrap wrapped and wraplen from struct regexp in macros RW_WRAPPED() and | Nicholas Clark | 2007-12-29 | 1 | -9/+9 |
* | Eliminate prelen from struct regexp. Possibly we are hardcoding a bit | Nicholas Clark | 2007-12-28 | 1 | -1/+0 |
* | Replace 3 uses of RX_PRELEN(r) with plen, which has the same value. | Nicholas Clark | 2007-12-28 | 1 | -3/+3 |
* | Eliminate precomp from struct regexp. Store the offset of precomp from | Nicholas Clark | 2007-12-28 | 1 | -5/+2 |
* | Silly Nick. There was a bug in change 30757 whereby the precomp of a | Nicholas Clark | 2007-12-28 | 1 | -1/+4 |
* | Wrap all accesses to the members precomp and prelen of struct regexp in | Nicholas Clark | 2007-12-28 | 1 | -12/+12 |
* | First class regexps. | Nicholas Clark | 2007-12-28 | 1 | -1/+1 |
* | Fix various bugs in regex engine with mixed utf8/latin pattern and strings. R... | Yves Orton | 2007-12-17 | 1 | -4/+23 |
* | Re: RC1 build failure | Jarkko Hietaniemi | 2007-11-23 | 1 | -18/+29 |
* | Fix (or hide?) a case of memory corruption with \K in substitutions | Rafael Garcia-Suarez | 2007-10-31 | 1 | -0/+5 |
* | Fix a few segfaults and a when() bug | josh | 2007-10-17 | 1 | -2/+6 |
* | Silence compiler warnings on Win32 (VC6) | Steve Hay | 2007-10-08 | 1 | -2/+2 |
* | Re: several compilation problems on VMS in perl@32039 | Craig A. Berry | 2007-10-06 | 1 | -6/+6 |
* | Use the PERL_PV_PRETTY_NOCLEAR flag to simplify the code in | Nicholas Clark | 2007-10-06 | 1 | -9/+7 |
* | Avoid using *pvf functions when the format string is a fixed string. | Nicholas Clark | 2007-10-06 | 1 | -2/+2 |
* | Revert one hunk of change 32034 that had the possibility of being buggy | Nicholas Clark | 2007-10-06 | 1 | -1/+11 |
* | Eliminate the Perl_sv_catpvf() in TRIE_STORE_REVCHAR | Nicholas Clark | 2007-10-05 | 1 | -5/+13 |
* | Eliminate most *printf-like calls that use a simple "%c" format, | Nicholas Clark | 2007-10-05 | 1 | -5/+9 |
* | API spelling patch, by Jerry D. Hedden | Rafael Garcia-Suarez | 2007-09-26 | 1 | -2/+2 |
* | Re: [perl #45605] Regexp failure with utf8-flagged string and byte-flagged pa... | Tels | 2007-09-25 | 1 | -1/+14 |
* | silence a spurious compiler warning in regcomp.c | Dave Mitchell | 2007-09-24 | 1 | -0/+1 |
* | [perl #45337] utf8 + "[a]a{2}" + /$.../ = panic: sv_len_utf8 cache | Dave Mitchell | 2007-09-14 | 1 | -1/+1 |
* | regcomp.c fix 64int warning | Reini Urban | 2007-08-12 | 1 | -1/+1 |
* | Optimize split // | Ævar Arnfjörð Bjarmason | 2007-08-09 | 1 | -1/+5 |
* | Forbid \g0. (tests coming later) | Rafael Garcia-Suarez | 2007-07-03 | 1 | -0/+2 |
* | char is not a good type to use for array indexes; | Jerry D. Hedden | 2007-07-01 | 1 | -2/+2 |
* | regclass on EBCDIC platforms | Benjamin Carter | 2007-06-30 | 1 | -2/+6 |
* | /p vs (?p) | Abigail | 2007-06-30 | 1 | -11/+38 |
* | Rename various regex defined so that they have distinct prefixes based on the... | Yves Orton | 2007-06-28 | 1 | -21/+21 |
* | Replace pattern parsing logic with optree "parsing" logic. | Yves Orton | 2007-06-28 | 1 | -0/+15 |
* | Move the RXf_WHITE logic for split " " into the regex engine | Ævar Arnfjörð Bjarmason | 2007-06-28 | 1 | -2/+6 |
* | Free memory in case of error/failure to compile. | Yves Orton | 2007-06-28 | 1 | -2/+3 |
* | s/\bunicode\b/Unicode/; # For everything not dual life | Nicholas Clark | 2007-06-24 | 1 | -4/+4 |
* | Plug a memory leak (noticed by Yves) | Rafael Garcia-Suarez | 2007-06-07 | 1 | -1/+3 |
* | Re: [PATCH] Callbacks for named captures (%+ and %-) | Ævar Arnfjörð Bjarmason | 2007-06-06 | 1 | -10/+168 |
* | Re: BBC(Bleadperl Breaks CPAN) Today: String::Multibyte | Yves Orton | 2007-06-03 | 1 | -5/+4 |
* | Re: [perl #43015] regex /.*\z/ doesn't matches strings ending with \n | Yves Orton | 2007-05-29 | 1 | -5/+7 |
* | Silence some VC6 compiler warnings in the regex code | Steve Hay | 2007-05-03 | 1 | -1/+1 |
* | FETCH/STORE/LENGTH callbacks for numbered capture variables | Ævar Arnfjörð Bjarmason | 2007-05-03 | 1 | -3/+70 |
* | The revenge of the consts | Andy Lester | 2007-05-03 | 1 | -4/+2 |
* | Get PERL_OLD_COPY_ON_WRITE passing all tests, apart from | Nicholas Clark | 2007-05-02 | 1 | -4/+1 |
* | Re: [PATCH] Change meaning of \v, \V, and add \h, \H to match Perl6, add \R t... | Yves Orton | 2007-05-01 | 1 | -3/+3 |
* | Re: [PATCH] Cleanup of the regexp API | Ævar Arnfjörð Bjarmason | 2007-04-30 | 1 | -11/+11 |