summaryrefslogtreecommitdiff
path: root/regexp.h
Commit message (Expand)AuthorAgeFilesLines
* much better swap logic to support reentrancy and fix assert failureGeorge Greer2009-07-261-1/+1
* Eliminate struct regexp_allocated and xpvio_allocated.Nicholas Clark2009-07-171-6/+0
* Revert SvPVX() to allow lvalue usage, but also add aMarcus Holland-Moritz2008-11-071-0/+2
* SvPV() does not take a const SV*, which means that the pattern argumentNicholas Clark2008-10-301-1/+1
* Update copyright years.Nicholas Clark2008-10-251-1/+1
* Re: [PATCH] readable assertion names, now the restReini Urban2008-06-081-27/+27
* Fix bit-fields for VC [was RE: [perl #50386] GIMME_V broken with 5.10.0/GCC a...Jan Dubois2008-02-121-2/+2
* Standardise the conditional compilation protection of ({}) fromNicholas Clark2008-01-261-2/+2
* constingRobin Barker2008-01-141-6/+7
* Well, I know *something* passed make test from a clean build beforeNicholas Clark2008-01-111-2/+2
* assert that these are the regexps you were looking for.Nicholas Clark2008-01-111-6/+39
* Fix prototype in regexp code following #32851, and regenSteve Hay2008-01-091-1/+1
* ReREFCNT_inc() should return a pointer to REGEXP.Nicholas Clark2008-01-071-2/+2
* Don't allocate the NV slot for SVt_REGEXP.Nicholas Clark2008-01-051-33/+42
* In struct regexp move the member paren_names to the IV union.Nicholas Clark2008-01-051-2/+4
* Convert all accesses of the member paren_names of struct regexp toNicholas Clark2008-01-051-0/+2
* Abolish RXf_UTF8. Store the UTF-8-ness of the pattern with SvUTF8().Nicholas Clark2008-01-051-2/+1
* Abolish wraplen from struct regexp. We're already storing it in SvCUR.Nicholas Clark2008-01-051-2/+1
* Abolish RXp_PRELEN(rx) and RXp_WRAPLEN()Nicholas Clark2008-01-051-7/+5
* Abolish wrapped in struct regexp - store the wrapped pattern pointerNicholas Clark2008-01-051-4/+2
* Add RX_UTF8(), which is effectively SvUTF8() but for regexps.Nicholas Clark2008-01-051-4/+5
* Fix the compile for -DPERL_OLD_COPY_ON_WRITE (apart from the tenaciousNicholas Clark2008-01-051-2/+3
* Make struct regexp the body of SVt_REGEXP SVs, REGEXPs become SVs,Nicholas Clark2008-01-021-27/+43
* Wrap all deferences of struct regexp* in macros RX_*() [and forNicholas Clark2008-01-021-16/+41
* Reorder the external regexp flags to get RXf_PMf_STD_PMMOD into theNicholas Clark2007-12-291-40/+40
* The position of the modifier flag bits is actually encoded by a rightNicholas Clark2007-12-291-0/+1
* Note to future self about moving the regexp flag bits around.Nicholas Clark2007-12-291-1/+3
* Wrap wrapped and wraplen from struct regexp in macros RW_WRAPPED() andNicholas Clark2007-12-291-0/+3
* Eliminate prelen from struct regexp. Possibly we are hardcoding a bitNicholas Clark2007-12-281-2/+4
* Eliminate precomp from struct regexp. Store the offset of precomp fromNicholas Clark2007-12-281-3/+3
* Wrap all accesses to the members precomp and prelen of struct regexp inNicholas Clark2007-12-281-0/+4
* Fix up copyright years for files modified in 2007.Nicholas Clark2007-11-071-1/+1
* Add note to regexp.h that modifying RXf_ type flags requires a regen.pl or re...Yves Orton2007-08-181-0/+14
* Optimize split //Ævar Arnfjörð Bjarmason2007-08-091-0/+1
* /p vs (?p)Abigail2007-06-301-1/+1
* fix overzealous search and replaceYves Orton2007-06-291-4/+4
* Rename various regex defined so that they have distinct prefixes based on the...Yves Orton2007-06-281-20/+20
* Move the RXf_WHITE logic for split " " into the regex engineÆvar Arnfjörð Bjarmason2007-06-281-1/+8
* SvRX() and SvRXOK() macrosÆvar Arnfjörð Bjarmason2007-06-181-0/+35
* Re: [PATCH] Callbacks for named captures (%+ and %-)Ævar Arnfjörð Bjarmason2007-06-061-3/+40
* Minor perlreapi.pod cleanupÆvar Arnfjörð Bjarmason2007-05-201-2/+11
* FETCH/STORE/LENGTH callbacks for numbered capture variablesÆvar Arnfjörð Bjarmason2007-05-031-5/+9
* tweak some regexp params to avoid warningsYves Orton2007-05-021-2/+2
* Re: [PATCH] Cleanup of the regexp APIÆvar Arnfjörð Bjarmason2007-04-301-12/+14
* Re: [PATCH (incomplete)] Make regcomp use SV* sv, instead of char* exp, char*...Ævar Arnfjörð Bjarmason2007-04-231-1/+1
* Re: Proposed changes and to regular expression interfaces in coreÆvar Arnfjörð Bjarmason2007-04-061-0/+1
* Re: pmdynflags and thread safetyYves Orton2007-04-041-2/+4
* Reorder the members of various regexp structs to reduce their size onNicholas Clark2007-03-311-10/+10
* precomp in struct regexp can be const char *.Nicholas Clark2007-03-311-1/+2
* In struct regexp replace the two arrays of I32s accessed via startpNicholas Clark2007-03-261-12/+8