summaryrefslogtreecommitdiff
path: root/regexec.c
Commit message (Expand)AuthorAgeFilesLines
* Assigning to DEFSV leaks if PL_defgv's gp_sv isn't set.Marcus Holland-Moritz2008-11-081-1/+1
* Revert SvPVX() to allow lvalue usage, but also add aMarcus Holland-Moritz2008-11-071-1/+1
* Various changes to regex diagnostics and testingYves Orton2008-11-061-1/+2
* Resolve perl #60344: Regex lookbehind failure after an (if)then|else in perl ...Yves Orton2008-11-061-0/+1
* PATCH: Large omnibus patch to clean up the JRRT quotesTom Christiansen2008-11-021-1/+5
* Eliminate (SV *) casts from the rest of *.c, picking up one (further)Nicholas Clark2008-10-301-8/+8
* Eliminate (AV *) casts in *.c.Nicholas Clark2008-10-291-3/+3
* Every remaining (HV *) cast in *.cNicholas Clark2008-10-281-2/+2
* Update copyright years.Nicholas Clark2008-10-251-1/+2
* assert() that every NN argument is not NULL. Otherwise we have theNicholas Clark2008-02-121-15/+49
* REGEXPs are now stored directly in PL_regex_padav, rather thanNicholas Clark2008-01-111-1/+1
* It seems that you don't need to reference count PL_reg_curpm withoutNicholas Clark2008-01-101-0/+5
* The correct solution is to reference count the regexp in PL_reg_curpm,Nicholas Clark2008-01-101-3/+6
* Change 32899 missed the other double-reference count.Nicholas Clark2008-01-091-1/+1
* Correct a long-standing ithreads reference counting anonamly - theNicholas Clark2008-01-081-1/+1
* Clarify the use of SVf_BREAK on PL_reg_curpm.Nicholas Clark2008-01-071-1/+2
* Make REGEXP a type distinct from SV. (Much like AV, CV, GV, HV).Nicholas Clark2008-01-051-5/+5
* Fix regexec.c so $^N and $+ are correctly updated so that they work properly ...Moritz Lenz2008-01-051-2/+13
* Convert all accesses of the member paren_names of struct regexp toNicholas Clark2008-01-051-2/+2
* Abolish RXf_UTF8. Store the UTF-8-ness of the pattern with SvUTF8().Nicholas Clark2008-01-051-1/+0
* Make Perl_pregcomp() use SvUTF8() of the pattern, rather than the flagNicholas Clark2008-01-051-1/+13
* s/re/rx/ in an assert overlooked during recent renovationsYves Orton2008-01-051-1/+1
* Replace all reads of RXf_UTF8 with RX_UTF8().Nicholas Clark2008-01-051-3/+3
* Add RX_UTF8(), which is effectively SvUTF8() but for regexps.Nicholas Clark2008-01-051-6/+6
* Make struct regexp the body of SVt_REGEXP SVs, REGEXPs become SVs,Nicholas Clark2008-01-021-34/+46
* Wrap all deferences of struct regexp* in macros RX_*() [and forNicholas Clark2008-01-021-8/+8
* Wrap all accesses to the members precomp and prelen of struct regexp inNicholas Clark2007-12-281-2/+2
* First class regexps.Nicholas Clark2007-12-281-6/+18
* scalars used in postponed subexpressions aren't first class regexps,Nicholas Clark2007-12-271-1/+3
* assert() that the sv_unmagic() in S_regmatch() is unneeded.Nicholas Clark2007-12-271-2/+12
* Regexps are now orange.Nicholas Clark2007-12-271-1/+3
* Comment out a now unused variableRafael Garcia-Suarez2007-12-171-1/+2
* Fix various bugs in regex engine with mixed utf8/latin pattern and strings. R...Yves Orton2007-12-171-27/+61
* Re: [perl #47195] $1 suddenly tainted after regexp on utf-8 stringRick Delaney2007-11-071-1/+1
* misc blead stuffJarkko Hietaniemi2007-08-301-2/+2
* TRIE must use 'yes' state transitions when more than one match possible to en...Marcus Holland-Moritz2007-08-181-10/+2
* s/\bunicode\b/Unicode/; # For everything not dual lifeNicholas Clark2007-06-241-2/+2
* [perl #43159] 5.9.4 regexp capturing wronglyDave Mitchell2007-06-181-6/+0
* add test for, and update comments for, old defined($1) oddity.Dave Mitchell2007-06-181-8/+6
* Silence another VC++ compiler warning (signed/unsigned mismatch in ==)Steve Hay2007-06-051-1/+1
* Re: [perl #43015] regex /.*\z/ doesn't matches strings ending with \nYves Orton2007-05-291-1/+1
* tweak some regexp params to avoid warningsYves Orton2007-05-021-1/+1
* Signedness nit, found by JarkkoRafael Garcia-Suarez2007-04-301-1/+1
* Re: [PATCH] Cleanup of the regexp APIÆvar Arnfjörð Bjarmason2007-04-301-3/+3
* Re: Analysis of problems with mixed encoding case insensitive matches in rege...Yves Orton2007-04-271-22/+15
* Fix a signed/unsigned comparison warningRafael Garcia-Suarez2007-04-271-2/+1
* Avoid a SIGBUS caused by passing a U32 pointer to utf8_to_uvchr(),Nicholas Clark2007-04-261-2/+3
* Re: Analysis of problems with mixed encoding case insensitive matches in rege...Yves Orton2007-04-261-0/+27
* Re: [PATCH (incomplete)] Make regcomp use SV* sv, instead of char* exp, char*...Ævar Arnfjörð Bjarmason2007-04-231-3/+1
* Change meaning of \v, \V, and add \h, \H to match Perl6, add \R to match PCRE...Yves Orton2007-04-231-1/+135