Update copyright years.
[p5sagit/p5-mst-13.2.git] / regexec.c
2008-10-25 Nicholas Clark Update copyright years.
2008-02-12 Nicholas Clark assert() that every NN argument is not NULL. Otherwise...
2008-01-11 Nicholas Clark REGEXPs are now stored directly in PL_regex_padav,...
2008-01-10 Nicholas Clark It seems that you don't need to reference count PL_reg_...
2008-01-10 Nicholas Clark The correct solution is to reference count the regexp...
2008-01-09 Nicholas Clark Change 32899 missed the other double-reference count.
2008-01-08 Nicholas Clark Correct a long-standing ithreads reference counting...
2008-01-07 Nicholas Clark Clarify the use of SVf_BREAK on PL_reg_curpm.
2008-01-05 Nicholas Clark Make REGEXP a type distinct from SV. (Much like AV...
2008-01-05 Moritz Lenz Fix regexec.c so $^N and $+ are correctly updated so...
2008-01-05 Nicholas Clark Convert all accesses of the member paren_names of struc...
2008-01-05 Nicholas Clark Abolish RXf_UTF8. Store the UTF-8-ness of the pattern...
2008-01-05 Nicholas Clark Make Perl_pregcomp() use SvUTF8() of the pattern, rathe...
2008-01-05 Yves Orton s/re/rx/ in an assert overlooked during recent renovations
2008-01-05 Nicholas Clark Replace all reads of RXf_UTF8 with RX_UTF8().
2008-01-05 Nicholas Clark Add RX_UTF8(), which is effectively SvUTF8() but for...
2008-01-02 Nicholas Clark Make struct regexp the body of SVt_REGEXP SVs, REGEXPs...
2008-01-02 Nicholas Clark Wrap all deferences of struct regexp* in macros RX_...
2007-12-28 Nicholas Clark Wrap all accesses to the members precomp and prelen...
2007-12-28 Nicholas Clark First class regexps.
2007-12-27 Nicholas Clark scalars used in postponed subexpressions aren't first...
2007-12-27 Nicholas Clark assert() that the sv_unmagic() in S_regmatch() is unneeded.
2007-12-27 Nicholas Clark Regexps are now orange.
2007-12-17 Rafael Garcia-Suarez Comment out a now unused variable
2007-12-17 Yves Orton Fix various bugs in regex engine with mixed utf8/latin...
2007-11-07 Rick Delaney Re: [perl #47195] $1 suddenly tainted after regexp...
2007-08-30 Jarkko Hietaniemi misc blead stuff
2007-08-18 Marcus Holland-Moritz TRIE must use 'yes' state transitions when more than...
2007-06-24 Nicholas Clark s/\bunicode\b/Unicode/; # For everything not dual life
2007-06-18 Dave Mitchell [perl #43159] 5.9.4 regexp capturing wrongly
2007-06-18 Dave Mitchell add test for, and update comments for, old defined...
2007-06-05 Steve Hay Silence another VC++ compiler warning (signed/unsigned...
2007-05-29 Yves Orton Re: [perl #43015] regex /.*\z/ doesn't matches strings...
2007-05-02 Yves Orton tweak some regexp params to avoid warnings
2007-04-30 Rafael Garcia-Suarez Signedness nit, found by Jarkko
2007-04-30 Ævar Arnfjörð Bjar... Re: [PATCH] Cleanup of the regexp API
2007-04-27 Yves Orton Re: Analysis of problems with mixed encoding case insen...
2007-04-27 Rafael Garcia-Suarez Fix a signed/unsigned comparison warning
2007-04-26 Nicholas Clark Avoid a SIGBUS caused by passing a U32 pointer to utf8_...
2007-04-26 Yves Orton Re: Analysis of problems with mixed encoding case insen...
2007-04-23 Ævar Arnfjörð Bjar... Re: [PATCH (incomplete)] Make regcomp use SV* sv, inste...
2007-04-23 Yves Orton Change meaning of \v, \V, and add \h, \H to match Perl6...
2007-04-04 Yves Orton Re: pmdynflags and thread safety
2007-04-01 Dave Mitchell free backtrack track when on unexpected exit, eg /...
2007-04-01 Dave Mitchell fix $^R scoping bug.
2007-03-26 Nicholas Clark In struct regexp replace the two arrays of I32s accesse...
2007-03-26 Nicholas Clark Move the declaration of two variables into the only...
2007-03-24 Nicholas Clark startp and endp can allocate their array of I32s from...
2007-03-22 Yves Orton Resolve PL_curpm issues with (??{}) and fix corruption...
2007-03-20 Yves Orton feel the the baß (encoding problems in the regex engine)
2007-03-13 Nicholas Clark The dMY_CXT added in change 27938 isn't needed when...
2007-03-03 Nicholas Clark Define and initialise reg_name only once.
2007-03-01 Yves Orton Re: New file: t/op/regexp_email.t
2007-02-26 Yves Orton Re: [perl #41565] qr// memory corruption
2007-02-26 Yves Orton Re: Regexp recursion limit too low?
2007-02-20 Steve Peters Silence a couple of compile warnings.
2007-02-20 Jarkko Hietaniemi regexec.c: S_ stands for static
2007-02-19 Rafael Garcia-Suarez Revert change #30081 at dmq's request, and mark its...
2007-02-12 Yves Orton Re: [perl #41492] Incorrect match with /(?(DEFINE)...
2007-02-03 Yves Orton Re: prerelease checklist for Perl 5.10
2007-02-02 Nicholas Clark Change 29502 wasn't perfect - you need to remove any...
2007-01-31 Yves Orton Improve regex stringification code
2007-01-31 Yves Orton $1 in nested regex EVAL doesnt work correctly.
2007-01-11 Yves Orton Add Regexp::Keep \K functionality to regex engine as...
2007-01-05 Rafael Garcia-Suarez Update copyright years in .c files
2007-01-05 Steve Hay Silence various VC6 warnings
2007-01-04 Marcus Holland-Moritz 4th patch from:
2007-01-04 Marcus Holland-Moritz The first three patches from:
2006-12-12 Steve Hay Silence VC warnings about possible operator precedence...
2006-12-10 Nicholas Clark Remove code duplication in S_to_utf8_substr() and S_to_...
2006-12-10 Nicholas Clark Downgrading a fixed or floating substring of a pattern...
2006-12-04 Yves Orton \R is supposed to mean something else so switch to...
2006-11-27 Nicholas Clark Move words and revcharmap out of struct _rev_trie_data...
2006-11-26 Nicholas Clark Move widecharmap out of the shared structure _reg_trie_...
2006-11-26 Nicholas Clark Swap _reg_ac_data.trie to U32 offset into the regdata...
2006-11-25 Jarkko Hietaniemi smoke signs suppression
2006-11-23 Yves Orton Re: [PATCH] Cleanup regexp flags and structure
2006-11-23 Yves Orton Cleanup regexp flags and structure
2006-11-22 Yves Orton \G with /g results in infinite loop in 5.6 and later
2006-11-20 Andreas König Patch by Yves Orton to fix the regression reported...
2006-11-17 yves orton [perl #36909] $^R undefined on matches involving backre...
2006-11-15 Yves Orton Re: [PATCH] Fix RT#19049 and add relative backreferences
2006-11-14 Yves Orton Fwd: Memory leak with s/// and hashes
2006-11-13 Yves Orton Re: [PATCH] New regex syntax omnibus
2006-11-12 Nicholas Clark Looks like I didn't actually test the COW conditional...
2006-11-12 Jarkko Hietaniemi (2nd version) small tweaks based on smoke signs
2006-11-09 Robin Barker ***speculative*** was RE: [PATCH] regexec.c - silence...
2006-11-08 Rafael Garcia-Suarez Type change to avoid signed/unsigned compiler warnings
2006-11-07 Yves Orton New regex syntax omnibus
2006-11-02 Yves Orton Add more backtracking control verbs to regex engine...
2006-11-02 Rafael Garcia-Suarez Silence a gcc warning
2006-11-01 Yves Orton Add a commit verb to regex engine to allow fine tuning...
2006-11-01 Steve Hay Silence VC++ compiler warnings
2006-10-30 Yves Orton The second patch from:
2006-10-30 Yves Orton The first patch from:
2006-10-26 Yves Orton Fix a problem with jump-tries, add (?FAIL) pattern.
2006-10-26 Yves Orton Fix a memory leak :
2006-10-18 Dave Bailey [perl #40557] regexec.c saves context stack position...
2006-10-12 Yves Orton Add Regex conditionals. Various bugfixes. More tests.
2006-10-09 Jarkko Hietaniemi Re: [PATCH] regexec.c: goto crossing initialization
next