| Commit message (Expand) | Author | Age | Files | Lines |
* | PATCH: regex longjmp flaws | Karl Williamson | 2010-09-15 | 1 | -1/+3 |
* | Properly free paren_name_list with its regexp. | Nicholas Clark | 2010-05-29 | 1 | -0/+1 |
* | Generate PL_simple[] and PL_varies[] with regcomp.pl, rather than hard-coding. | Nicholas Clark | 2010-05-27 | 1 | -31/+0 |
* | tries: don't allocate memory at runtime | David Mitchell | 2010-05-03 | 1 | -3/+11 |
* | revert to 5.8.x semantics for \s \w and \d | Yves Orton | 2009-10-19 | 1 | -1/+1 |
* | somewhat fix failing regex tests. but break lots of other stuff at the same time | Yves Orton | 2009-10-19 | 1 | -1/+1 |
* | add more positive gofs GPOS tests and fix some bugs too | Yves Orton | 2009-09-10 | 1 | -0/+3 |
* | set PERL_LEGACY_UNICODE_CHARCLASS_MAPPINGS to 0 and enable proper POSIX char ... | Yves Orton | 2009-09-02 | 1 | -1/+2 |
* | create new unicode props as defined in POSIX spec (optionally use them in the... | Yves Orton | 2008-11-07 | 1 | -0/+18 |
* | Various changes to regex diagnostics and testing | Yves Orton | 2008-11-06 | 1 | -2/+2 |
* | Make struct regexp the body of SVt_REGEXP SVs, REGEXPs become SVs, | Nicholas Clark | 2008-01-02 | 1 | -4/+4 |
* | Wrap all deferences of struct regexp* in macros RX_*() [and for | Nicholas Clark | 2008-01-02 | 1 | -1/+4 |
* | Add editor blocks to some header files. | Marcus Holland-Moritz | 2008-01-01 | 1 | -2/+9 |
* | Fix up copyright years for files modified in 2007. | Nicholas Clark | 2007-11-07 | 1 | -1/+1 |
* | API spelling patch, by Jerry D. Hedden | Rafael Garcia-Suarez | 2007-09-26 | 1 | -1/+1 |
* | /p vs (?p) | Abigail | 2007-06-30 | 1 | -1/+3 |
* | s/\bunicode\b/Unicode/; # For everything not dual life | Nicholas Clark | 2007-06-24 | 1 | -1/+1 |
* | Re: [PATCH] Callbacks for named captures (%+ and %-) | Ævar Arnfjörð Bjarmason | 2007-06-06 | 1 | -1/+2 |
* | FETCH/STORE/LENGTH callbacks for numbered capture variables | Ævar Arnfjörð Bjarmason | 2007-05-03 | 1 | -4/+6 |
* | Re: [PATCH] Cleanup of the regexp API | Ævar Arnfjörð Bjarmason | 2007-04-30 | 1 | -1/+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/+13 |
* | Re: Proposed changes and to regular expression interfaces in core | Ævar Arnfjörð Bjarmason | 2007-04-06 | 1 | -1/+2 |
* | Reorder the members of various regexp structs to reduce their size on | Nicholas Clark | 2007-03-31 | 1 | -5/+5 |
* | Resolve PL_curpm issues with (??{}) and fix corruption of match results when ... | Yves Orton | 2007-03-22 | 1 | -6/+1 |
* | Re: New file: t/op/regexp_email.t | Yves Orton | 2007-03-01 | 1 | -0/+4 |
* | add hooks for capture buffers into regex engine. | Yves Orton | 2007-02-13 | 1 | -0/+2 |
* | Improve regex stringification code | Yves Orton | 2007-01-31 | 1 | -0/+1 |
* | Disable positive lookaround optimisations | Yves Orton | 2007-01-22 | 1 | -1/+1 |
* | Re: [PATCH] Change implementation of %+ to use a proper tied hash interface a... | Yves Orton | 2007-01-16 | 1 | -4/+4 |
* | Make offsets support conditional | Yves Orton | 2007-01-16 | 1 | -3/+14 |
* | Add support for /k modfier for matching along with ${^PREMATCH}, ${^MATCH}, $... | Yves Orton | 2007-01-15 | 1 | -3/+0 |
* | Update copyright years in .h files. Also, in .pl | Rafael Garcia-Suarez | 2007-01-05 | 1 | -1/+1 |
* | Re: Named-capture regex syntax | Yves Orton | 2006-12-25 | 1 | -1/+5 |
* | Remove code duplication in S_to_utf8_substr() and S_to_byte_substr() | Nicholas Clark | 2006-12-10 | 1 | -0/+2 |
* | Further tweaks to make it easier to create regexp engine plug ins. | Yves Orton | 2006-12-05 | 1 | -13/+25 |
* | Better version of last patch, by Yves Orton. | Rafael Garcia-Suarez | 2006-12-04 | 1 | -1/+17 |
* | The new regexp compilation function must be added to the engine structure. | Rafael Garcia-Suarez | 2006-12-04 | 1 | -0/+1 |
* | Continue split of perl internal regexp structures from ones that are engine s... | Yves Orton | 2006-12-01 | 1 | -3/+2 |
* | Re: Fix \k<foo> preceded by literal | Yves Orton | 2006-11-29 | 1 | -1/+4 |
* | Move words and revcharmap out of struct _rev_trie_data and duplicate | Nicholas Clark | 2006-11-27 | 1 | -4/+13 |
* | Move widecharmap out of the shared structure _reg_trie_data into the | Nicholas Clark | 2006-11-26 | 1 | -1/+1 |
* | Swap _reg_ac_data.trie to U32 offset into the regdata array, as | Nicholas Clark | 2006-11-26 | 1 | -1/+1 |
* | Moving the reference count to the front of both _reg_trie_data and | Nicholas Clark | 2006-11-26 | 1 | -3/+7 |
* | \G with /g results in infinite loop in 5.6 and later | Yves Orton | 2006-11-22 | 1 | -0/+8 |
* | Re: [PATCH] New regex syntax omnibus | Yves Orton | 2006-11-13 | 1 | -0/+1 |
* | Regex Utility Functions and Substituion Fix (XML::Twig core dump) | Yves Orton | 2006-11-13 | 1 | -0/+1 |
* | New regex syntax omnibus | Yves Orton | 2006-11-07 | 1 | -0/+1 |
* | Add more backtracking control verbs to regex engine (?CUT), (?ERROR) | Yves Orton | 2006-11-02 | 1 | -0/+4 |
* | Re: Off by one in the trie code? | Yves Orton | 2006-10-19 | 1 | -1/+2 |
* | Add possessive quantifiers to regex engine. | Yves Orton | 2006-10-13 | 1 | -0/+6 |