summaryrefslogtreecommitdiff
path: root/regcomp.c
Commit message (Expand)AuthorAgeFilesLines
* Re: [perl #52672] regexp failure: (?=) turns into OPFAILÆvar Arnfjörð Bjarmason2008-04-111-0/+2
* Silence Borland compiler warnings (except for warnings from zlib) here:Steve Hay2008-02-251-4/+4
* Fix bug 50496 -- regcomp.c=~s/lastcloseparen/lastparen/gYves Orton2008-02-171-2/+3
* Fix perlbug 50114 and document what the code does a bit betterYves Orton2008-02-171-7/+18
* assert() that every NN argument is not NULL. Otherwise we have theNicholas Clark2008-02-121-8/+139
* Move the reg_stringify logic to Perl_sv_2pv_flagsÆvar Arnfjörð Bjarmason2008-01-101-40/+0
* seen_eval regex field wasn't getting clonedDave Mitchell2008-01-091-1/+0
* Fix the bug introduced by the bug fix of change 30755.Nicholas Clark2008-01-091-1/+9
* Make new regex type be 'REGEXP' and make all core qr//'s be in class Regexp (...Yves Orton2008-01-061-1/+4
* Make REGEXP a type distinct from SV. (Much like AV, CV, GV, HV).Nicholas Clark2008-01-051-3/+3
* Don't allocate the NV slot for SVt_REGEXP.Nicholas Clark2008-01-051-2/+1
* Convert all accesses of the member paren_names of struct regexp toNicholas Clark2008-01-051-18/+18
* Abolish RXf_UTF8. Store the UTF-8-ness of the pattern with SvUTF8().Nicholas Clark2008-01-051-4/+3
* Make Perl_pregcomp() use SvUTF8() of the pattern, rather than the flagNicholas Clark2008-01-051-2/+5
* Replace all reads of RXf_UTF8 with RX_UTF8().Nicholas Clark2008-01-051-2/+2
* Abolish wraplen from struct regexp. We're already storing it in SvCUR.Nicholas Clark2008-01-051-3/+3
* Abolish RXp_PRELEN(rx) and RXp_WRAPLEN()Nicholas Clark2008-01-051-9/+9
* Abolish wrapped in struct regexp - store the wrapped pattern pointerNicholas Clark2008-01-051-4/+9
* Add RX_UTF8(), which is effectively SvUTF8() but for regexps.Nicholas Clark2008-01-051-8/+8
* Extend newSVpvn_flags() to also call sv_2mortal() if SVs_TEMP is set inNicholas Clark2008-01-031-3/+4
* Possible future bugs found by the creation of newSVpvn_flags().Nicholas Clark2008-01-031-6/+2
* Add a new function newSVpvn_flags(), which takes a third parameter ofNicholas Clark2008-01-021-12/+7
* Make struct regexp the body of SVt_REGEXP SVs, REGEXPs become SVs,Nicholas Clark2008-01-021-54/+65
* Convert some "regexp" and "struct regexp" to REGEXP where they areNicholas Clark2008-01-021-5/+5
* Wrap all deferences of struct regexp* in macros RX_*() [and forNicholas Clark2008-01-021-19/+19
* The position of the modifier flag bits is actually encoded by a rightNicholas Clark2007-12-291-1/+2
* Wrap wrapped and wraplen from struct regexp in macros RW_WRAPPED() andNicholas Clark2007-12-291-9/+9
* Eliminate prelen from struct regexp. Possibly we are hardcoding a bitNicholas Clark2007-12-281-1/+0
* Replace 3 uses of RX_PRELEN(r) with plen, which has the same value.Nicholas Clark2007-12-281-3/+3
* Eliminate precomp from struct regexp. Store the offset of precomp fromNicholas Clark2007-12-281-5/+2
* Silly Nick. There was a bug in change 30757 whereby the precomp of aNicholas Clark2007-12-281-1/+4
* Wrap all accesses to the members precomp and prelen of struct regexp inNicholas Clark2007-12-281-12/+12
* First class regexps.Nicholas Clark2007-12-281-1/+1
* Fix various bugs in regex engine with mixed utf8/latin pattern and strings. R...Yves Orton2007-12-171-4/+23
* Re: RC1 build failureJarkko Hietaniemi2007-11-231-18/+29
* Fix (or hide?) a case of memory corruption with \K in substitutionsRafael Garcia-Suarez2007-10-311-0/+5
* 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