summaryrefslogtreecommitdiff
path: root/regexec.c
Commit message (Expand)AuthorAgeFilesLines
* fix rt75680 - when working with utf8 strings one must always use s+=UTF8SKIP(...Yves Orton2010-08-251-21/+56
* Allow U+0FFFF in regexKarl Williamson2009-12-201-2/+4
* Fix compile failure introduced in 37e2e78edfe0a224b8a615820f46db879584f523.Craig A. Berry2009-12-131-9/+9
* qr/\X/ expansionKarl Williamson2009-12-051-15/+229
* SvREFCNT_dec already checks if the SV is non-NULL (continued)Vincent Pit2009-11-081-2/+2
* disable non-unicode case insensitive trie matchingYves Orton2009-10-251-7/+2
* RT#69616: regexp SVs lose regexpness in assignmentBen Morrow2009-10-221-1/+1
* somewhat fix failing regex tests. but break lots of other stuff at the same timeYves Orton2009-10-191-18/+51
* refactor the special CC code in reg_try()Yves Orton2009-10-161-140/+75
* in regexec.c move the BOUND logic out of the way of the special CC logicYves Orton2009-10-051-41/+41
* refactor some common logic in regexec.cYves Orton2009-10-041-10/+4
* fix format warnings from regexec.cRobin Barker2009-09-221-3/+3
* add more positive gofs GPOS tests and fix some bugs tooYves Orton2009-09-101-4/+16
* Fix RT69056 - postive GPOS leads to segv on first matchYves Orton2009-09-091-1/+4
* much better swap logic to support reentrancy and fix assert failureGeorge Greer2009-07-261-29/+17
* Save and restore PL_regeol for op inside of regex (RT ##66110)Craig A. Berry2009-07-251-0/+2
* Regex fails when string is too longhv@crypt.org2009-07-061-2/+3
* fix [RT #60034]. An equivalent fix was already in 5.8.9 as change 34580.David Mitchell2009-03-221-2/+5
* Fix #56194 Regex: (((??{1 + $^N}))) behaves differently in 5.10.0 than in bleadBram2009-03-121-1/+15
* Fix memory leakKarl2009-01-261-0/+3
* Another regexp failure with utf8-flagged string and byte-flagged pattern (rem...Slaven Rezic2009-01-041-2/+6
* Fix malformed utf8 in regexec.cKarl2008-12-281-6/+12
* fix bug #57042 - preserve $^R across TRIE matchesYves Orton2008-12-271-1/+4
* 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