| Commit message (Expand) | Author | Age | Files | Lines |
* | much better swap logic to support reentrancy and fix assert failure | George Greer | 2009-07-26 | 1 | -1/+1 |
* | Eliminate struct regexp_allocated and xpvio_allocated. | Nicholas Clark | 2009-07-17 | 1 | -6/+0 |
* | Revert SvPVX() to allow lvalue usage, but also add a | Marcus Holland-Moritz | 2008-11-07 | 1 | -0/+2 |
* | SvPV() does not take a const SV*, which means that the pattern argument | Nicholas Clark | 2008-10-30 | 1 | -1/+1 |
* | Update copyright years. | Nicholas Clark | 2008-10-25 | 1 | -1/+1 |
* | Re: [PATCH] readable assertion names, now the rest | Reini Urban | 2008-06-08 | 1 | -27/+27 |
* | Fix bit-fields for VC [was RE: [perl #50386] GIMME_V broken with 5.10.0/GCC a... | Jan Dubois | 2008-02-12 | 1 | -2/+2 |
* | Standardise the conditional compilation protection of ({}) from | Nicholas Clark | 2008-01-26 | 1 | -2/+2 |
* | consting | Robin Barker | 2008-01-14 | 1 | -6/+7 |
* | Well, I know *something* passed make test from a clean build before | Nicholas Clark | 2008-01-11 | 1 | -2/+2 |
* | assert that these are the regexps you were looking for. | Nicholas Clark | 2008-01-11 | 1 | -6/+39 |
* | Fix prototype in regexp code following #32851, and regen | Steve Hay | 2008-01-09 | 1 | -1/+1 |
* | ReREFCNT_inc() should return a pointer to REGEXP. | Nicholas Clark | 2008-01-07 | 1 | -2/+2 |
* | Don't allocate the NV slot for SVt_REGEXP. | Nicholas Clark | 2008-01-05 | 1 | -33/+42 |
* | In struct regexp move the member paren_names to the IV union. | Nicholas Clark | 2008-01-05 | 1 | -2/+4 |
* | Convert all accesses of the member paren_names of struct regexp to | Nicholas Clark | 2008-01-05 | 1 | -0/+2 |
* | Abolish RXf_UTF8. Store the UTF-8-ness of the pattern with SvUTF8(). | Nicholas Clark | 2008-01-05 | 1 | -2/+1 |
* | Abolish wraplen from struct regexp. We're already storing it in SvCUR. | Nicholas Clark | 2008-01-05 | 1 | -2/+1 |
* | Abolish RXp_PRELEN(rx) and RXp_WRAPLEN() | Nicholas Clark | 2008-01-05 | 1 | -7/+5 |
* | Abolish wrapped in struct regexp - store the wrapped pattern pointer | Nicholas Clark | 2008-01-05 | 1 | -4/+2 |
* | Add RX_UTF8(), which is effectively SvUTF8() but for regexps. | Nicholas Clark | 2008-01-05 | 1 | -4/+5 |
* | Fix the compile for -DPERL_OLD_COPY_ON_WRITE (apart from the tenacious | Nicholas Clark | 2008-01-05 | 1 | -2/+3 |
* | Make struct regexp the body of SVt_REGEXP SVs, REGEXPs become SVs, | Nicholas Clark | 2008-01-02 | 1 | -27/+43 |
* | Wrap all deferences of struct regexp* in macros RX_*() [and for | Nicholas Clark | 2008-01-02 | 1 | -16/+41 |
* | Reorder the external regexp flags to get RXf_PMf_STD_PMMOD into the | Nicholas Clark | 2007-12-29 | 1 | -40/+40 |
* | The position of the modifier flag bits is actually encoded by a right | Nicholas Clark | 2007-12-29 | 1 | -0/+1 |
* | Note to future self about moving the regexp flag bits around. | Nicholas Clark | 2007-12-29 | 1 | -1/+3 |
* | Wrap wrapped and wraplen from struct regexp in macros RW_WRAPPED() and | Nicholas Clark | 2007-12-29 | 1 | -0/+3 |
* | Eliminate prelen from struct regexp. Possibly we are hardcoding a bit | Nicholas Clark | 2007-12-28 | 1 | -2/+4 |
* | Eliminate precomp from struct regexp. Store the offset of precomp from | Nicholas Clark | 2007-12-28 | 1 | -3/+3 |
* | Wrap all accesses to the members precomp and prelen of struct regexp in | Nicholas Clark | 2007-12-28 | 1 | -0/+4 |
* | Fix up copyright years for files modified in 2007. | Nicholas Clark | 2007-11-07 | 1 | -1/+1 |
* | Add note to regexp.h that modifying RXf_ type flags requires a regen.pl or re... | Yves Orton | 2007-08-18 | 1 | -0/+14 |
* | Optimize split // | Ævar Arnfjörð Bjarmason | 2007-08-09 | 1 | -0/+1 |
* | /p vs (?p) | Abigail | 2007-06-30 | 1 | -1/+1 |
* | fix overzealous search and replace | Yves Orton | 2007-06-29 | 1 | -4/+4 |
* | Rename various regex defined so that they have distinct prefixes based on the... | Yves Orton | 2007-06-28 | 1 | -20/+20 |
* | Move the RXf_WHITE logic for split " " into the regex engine | Ævar Arnfjörð Bjarmason | 2007-06-28 | 1 | -1/+8 |
* | SvRX() and SvRXOK() macros | Ævar Arnfjörð Bjarmason | 2007-06-18 | 1 | -0/+35 |
* | Re: [PATCH] Callbacks for named captures (%+ and %-) | Ævar Arnfjörð Bjarmason | 2007-06-06 | 1 | -3/+40 |
* | Minor perlreapi.pod cleanup | Ævar Arnfjörð Bjarmason | 2007-05-20 | 1 | -2/+11 |
* | FETCH/STORE/LENGTH callbacks for numbered capture variables | Ævar Arnfjörð Bjarmason | 2007-05-03 | 1 | -5/+9 |
* | tweak some regexp params to avoid warnings | Yves Orton | 2007-05-02 | 1 | -2/+2 |
* | Re: [PATCH] Cleanup of the regexp API | Ævar Arnfjörð Bjarmason | 2007-04-30 | 1 | -12/+14 |
* | Re: [PATCH (incomplete)] Make regcomp use SV* sv, instead of char* exp, char*... | Ævar Arnfjörð Bjarmason | 2007-04-23 | 1 | -1/+1 |
* | Re: Proposed changes and to regular expression interfaces in core | Ævar Arnfjörð Bjarmason | 2007-04-06 | 1 | -0/+1 |
* | Re: pmdynflags and thread safety | Yves Orton | 2007-04-04 | 1 | -2/+4 |
* | Reorder the members of various regexp structs to reduce their size on | Nicholas Clark | 2007-03-31 | 1 | -10/+10 |
* | precomp in struct regexp can be const char *. | Nicholas Clark | 2007-03-31 | 1 | -1/+2 |
* | In struct regexp replace the two arrays of I32s accessed via startp | Nicholas Clark | 2007-03-26 | 1 | -12/+8 |