summaryrefslogtreecommitdiff
path: root/regcomp.c
Commit message (Expand)AuthorAgeFilesLines
* Fix a few segfaults and a when() bugjosh2007-10-171-2/+6
* Silence compiler warnings on Win32 (VC6)Steve Hay2007-10-081-2/+2
* Re: several compilation problems on VMS in perl@32039Craig A. Berry2007-10-061-6/+6
* Use the PERL_PV_PRETTY_NOCLEAR flag to simplify the code inNicholas Clark2007-10-061-9/+7
* Avoid using *pvf functions when the format string is a fixed string.Nicholas Clark2007-10-061-2/+2
* Revert one hunk of change 32034 that had the possibility of being buggyNicholas Clark2007-10-061-1/+11
* Eliminate the Perl_sv_catpvf() in TRIE_STORE_REVCHARNicholas Clark2007-10-051-5/+13
* Eliminate most *printf-like calls that use a simple "%c" format,Nicholas Clark2007-10-051-5/+9
* API spelling patch, by Jerry D. HeddenRafael Garcia-Suarez2007-09-261-2/+2
* Re: [perl #45605] Regexp failure with utf8-flagged string and byte-flagged pa...Tels2007-09-251-1/+14
* silence a spurious compiler warning in regcomp.cDave Mitchell2007-09-241-0/+1
* [perl #45337] utf8 + "[a]a{2}" + /$.../ = panic: sv_len_utf8 cacheDave Mitchell2007-09-141-1/+1
* regcomp.c fix 64int warningReini Urban2007-08-121-1/+1
* Optimize split //Ævar Arnfjörð Bjarmason2007-08-091-1/+5
* Forbid \g0. (tests coming later)Rafael Garcia-Suarez2007-07-031-0/+2
* char is not a good type to use for array indexes;Jerry D. Hedden2007-07-011-2/+2
* regclass on EBCDIC platformsBenjamin Carter2007-06-301-2/+6
* /p vs (?p)Abigail2007-06-301-11/+38
* Rename various regex defined so that they have distinct prefixes based on the...Yves Orton2007-06-281-21/+21
* Replace pattern parsing logic with optree "parsing" logic.Yves Orton2007-06-281-0/+15
* Move the RXf_WHITE logic for split " " into the regex engineÆvar Arnfjörð Bjarmason2007-06-281-2/+6
* Free memory in case of error/failure to compile.Yves Orton2007-06-281-2/+3
* s/\bunicode\b/Unicode/; # For everything not dual lifeNicholas Clark2007-06-241-4/+4
* Plug a memory leak (noticed by Yves)Rafael Garcia-Suarez2007-06-071-1/+3
* Re: [PATCH] Callbacks for named captures (%+ and %-)Ævar Arnfjörð Bjarmason2007-06-061-10/+168
* Re: BBC(Bleadperl Breaks CPAN) Today: String::MultibyteYves Orton2007-06-031-5/+4
* Re: [perl #43015] regex /.*\z/ doesn't matches strings ending with \nYves Orton2007-05-291-5/+7
* Silence some VC6 compiler warnings in the regex codeSteve Hay2007-05-031-1/+1
* FETCH/STORE/LENGTH callbacks for numbered capture variablesÆvar Arnfjörð Bjarmason2007-05-031-3/+70
* The revenge of the constsAndy Lester2007-05-031-4/+2
* Get PERL_OLD_COPY_ON_WRITE passing all tests, apart fromNicholas Clark2007-05-021-4/+1
* Re: [PATCH] Change meaning of \v, \V, and add \h, \H to match Perl6, add \R t...Yves Orton2007-05-011-3/+3
* Re: [PATCH] Cleanup of the regexp APIÆvar Arnfjörð Bjarmason2007-04-301-11/+11
* Re: Analysis of problems with mixed encoding case insensitive matches in rege...Yves Orton2007-04-271-13/+15
* Avoid a SIGBUS caused by passing a U32 pointer to utf8_to_uvchr(),Nicholas Clark2007-04-261-1/+1
* Forgot to submit regcomp.c in change #31081Rafael Garcia-Suarez2007-04-261-5/+38
* Re: [PATCH (incomplete)] Make regcomp use SV* sv, instead of char* exp, char*...Ævar Arnfjörð Bjarmason2007-04-231-13/+13
* Change meaning of \v, \V, and add \h, \H to match Perl6, add \R to match PCRE...Yves Orton2007-04-231-8/+101
* Silence the g++ warnings "right-hand operand of comma has no effect"Nicholas Clark2007-04-101-4/+4
* RXf_WHITE never used due to small bug in regcomp.cÆvar Arnfjörð Bjarmason2007-04-081-1/+1
* Re: Proposed changes and to regular expression interfaces in coreÆvar Arnfjörð Bjarmason2007-04-061-0/+6
* Re: pmdynflags and thread safetyYves Orton2007-04-041-10/+11
* In struct regexp replace the two arrays of I32s accessed via startpNicholas Clark2007-03-261-25/+17
* Simplify the logic in Perl_re_dup() - copy the structure as 1 block,Nicholas Clark2007-03-261-31/+15
* Change 30753 forgot to remove 2 now unused variables.Nicholas Clark2007-03-251-2/+0
* Looks like re_dup has been leaking references on 2 SVs for most regexpsNicholas Clark2007-03-251-15/+27
* A more efficient copy in Perl_reg_temp_copy()Nicholas Clark2007-03-251-25/+9
* Re: The performance problem of 30678Marcus Holland-Moritz2007-03-251-3/+21
* startp and endp can allocate their array of I32s from the same block ofNicholas Clark2007-03-241-14/+10
* It's possible to write the dup of struct reg_substr_datum with aNicholas Clark2007-03-231-9/+14