LOGONLY mark 28093d, 9ef2b9 NODOC since I'm fairly sure these two aren't important
[p5sagit/p5-mst-13.2.git] / regcomp.c
2010-05-29 Nicholas Clark Properly free paren_name_list with its regexp.
2010-05-29 Karl Williamson Add tested for corrupted regnode
2010-05-27 Nicholas Clark Encapsulate lookups in PL_{varies,simple} within macros...
2010-05-24 Nicholas Clark Convert Perl_sv_dup_inc() from a macro to a real function.
2010-05-08 Karl Williamson PATCH [perl #74978] dot after } breaks \N{}
2010-05-03 David Mitchell tries: don't allocate memory at runtime
2010-05-01 Nicholas Clark On the save stack, store the save type as the bottom...
2010-04-26 Karl Williamson Deal with "\c{", and its kin
2010-02-22 Craig A. Berry Don't multiply define Perl_regcurly in core and the...
2010-02-20 Karl Williamson Improve handling of qq(\N{...}); and /x
2010-02-19 Karl Williamson PATCH: [perl #56444] delayed interpolation of \N{...}
2010-02-18 Nicholas Clark In Perl_reg_temp_copy(), ensure SvMAGIC() is NULL in...
2010-02-11 Rafael Garcia-Suarez [perl #72590] Panic if 'use strict' and forget 'my'
2010-02-09 Nicholas Clark Fix for non-regexps being upgraded to SVt_REGEXP
2010-01-22 David Mitchell fix SEGV in /\N{...}/
2009-12-02 Nicholas Clark Ensure that pp_qr returns a new regexp SV each time...
2009-11-08 Vincent Pit SvREFCNT_dec already checks if the SV is non-NULL ...
2009-10-25 Yves Orton disable non-unicode case insensitive trie matching
2009-10-22 Ben Morrow RT#69616: regexp SVs lose regexpness in assignment
2009-10-16 Nicholas Clark Enable deprecation warnings by default.
2009-10-12 Nicholas Clark ckWARNreg() and ckWARNregdep() now use string concatena...
2009-10-12 Nicholas Clark Replace "%s"/SvPVX(sv_name) with "%"SVf/SVfARG(sv_name...
2009-10-12 Nicholas Clark In regcomp.c, where possible replace vWARN* with ckWARN...
2009-07-26 George Greer much better swap logic to support reentrancy and fix...
2009-07-17 Nicholas Clark Eliminate struct regexp_allocated and xpvio_allocated.
2009-07-02 hv@crypt.org Some bugs in Perl regexp (core Perl issues)
2009-06-26 Vincent Pit Update RExC_npar and after_freeze correctly after the...
2009-06-16 Rafael Garcia-Suarez Implement new regex escape \N
2009-01-16 Karl Add warning about octal > 377 in some regexes
2008-11-07 Yves Orton create new unicode props as defined in POSIX spec ...
2008-11-07 Yves Orton Make sure inversion sign is shown in all anyof classes...
2008-11-06 Yves Orton Various changes to regex diagnostics and testing
2008-11-06 karl williamson Reolve perlbug #59328: In re's, \N{U+...} doesn't match...
2008-11-02 Tom Christiansen PATCH: Large omnibus patch to clean up the JRRT quotes
2008-11-02 Michael Cartmell [perl #56526] m/a{1,0}/ compiles but doesn't match...
2008-11-02 Rafael Garcia-Suarez Explicitly specify some printf formats for constant...
2008-10-30 Nicholas Clark Eliminate (SV *) casts from the rest of *.c, picking...
2008-10-30 Nicholas Clark SvPV() does not take a const SV*, which means that...
2008-10-29 Marcus Holland-Moritz Use pvs macros instead of pvn where possible.
2008-10-29 Nicholas Clark Eliminate (AV *) casts in *.c.
2008-10-28 Nicholas Clark Every remaining (HV *) cast in *.c
2008-10-28 Nicholas Clark ss_dup wrapper const casting analagous to change 34626.
2008-10-25 Nicholas Clark Update copyright years.
2008-10-18 Marcus Holland-Moritz Fix memory leak in // caused by single-char character...
2008-10-05 Nicholas Clark Avoid allocating 1 extra regnode when duplicating a...
2008-09-20 Nicholas Clark Two missing 'static's, spotted by Merijn's smoker.
2008-07-18 Marcus Holland-Moritz Welcome to refcount hell. Fix the leaks reported by...
2008-06-09 Nicholas Clark Strength reduction optimisation seems to spot that...
2008-06-09 Reini Urban Re: [PATCH] More COW lvalues
2008-05-18 Dave Mitchell fix misleading comment about Perl_re_dup_guts
2008-04-11 Ævar Arnfjörð Bjar... Re: [perl #52672] regexp failure: (?=) turns into OPFAIL
2008-02-25 Steve Hay Silence Borland compiler warnings (except for warnings...
2008-02-17 Yves Orton Fix bug 50496 -- regcomp.c=~s/lastcloseparen/lastparen/g
2008-02-17 Yves Orton Fix perlbug 50114 and document what the code does a...
2008-02-12 Nicholas Clark assert() that every NN argument is not NULL. Otherwise...
2008-01-10 Ævar Arnfjörð Bjar... Move the reg_stringify logic to Perl_sv_2pv_flags
2008-01-09 Dave Mitchell seen_eval regex field wasn't getting cloned
2008-01-09 Nicholas Clark Fix the bug introduced by the bug fix of change 30755.
2008-01-06 Yves Orton Make new regex type be 'REGEXP' and make all core qr...
2008-01-05 Nicholas Clark Make REGEXP a type distinct from SV. (Much like AV...
2008-01-05 Nicholas Clark Don't allocate the NV slot for SVt_REGEXP.
2008-01-05 Nicholas Clark Convert all accesses of the member paren_names of struc...
2008-01-05 Nicholas Clark Abolish RXf_UTF8. Store the UTF-8-ness of the pattern...
2008-01-05 Nicholas Clark Make Perl_pregcomp() use SvUTF8() of the pattern, rathe...
2008-01-05 Nicholas Clark Replace all reads of RXf_UTF8 with RX_UTF8().
2008-01-05 Nicholas Clark Abolish wraplen from struct regexp. We're already stori...
2008-01-05 Nicholas Clark Abolish RXp_PRELEN(rx) and RXp_WRAPLEN()
2008-01-05 Nicholas Clark Abolish wrapped in struct regexp - store the wrapped...
2008-01-05 Nicholas Clark Add RX_UTF8(), which is effectively SvUTF8() but for...
2008-01-03 Nicholas Clark Extend newSVpvn_flags() to also call sv_2mortal() if...
2008-01-03 Nicholas Clark Possible future bugs found by the creation of newSVpvn_...
2008-01-02 Nicholas Clark Add a new function newSVpvn_flags(), which takes a...
2008-01-02 Nicholas Clark Make struct regexp the body of SVt_REGEXP SVs, REGEXPs...
2008-01-02 Nicholas Clark Convert some "regexp" and "struct regexp" to REGEXP...
2008-01-02 Nicholas Clark Wrap all deferences of struct regexp* in macros RX_...
2007-12-29 Nicholas Clark The position of the modifier flag bits is actually...
2007-12-29 Nicholas Clark Wrap wrapped and wraplen from struct regexp in macros...
2007-12-28 Nicholas Clark Eliminate prelen from struct regexp. Possibly we are...
2007-12-28 Nicholas Clark Replace 3 uses of RX_PRELEN(r) with plen, which has...
2007-12-28 Nicholas Clark Eliminate precomp from struct regexp. Store the offset...
2007-12-28 Nicholas Clark Silly Nick. There was a bug in change 30757 whereby...
2007-12-28 Nicholas Clark Wrap all accesses to the members precomp and prelen...
2007-12-28 Nicholas Clark First class regexps.
2007-12-17 Yves Orton Fix various bugs in regex engine with mixed utf8/latin...
2007-11-23 Jarkko Hietaniemi Re: RC1 build failure
2007-10-31 Rafael Garcia-Suarez Fix (or hide?) a case of memory corruption with \K...
2007-10-17 josh Fix a few segfaults and a when() bug
2007-10-08 Steve Hay Silence compiler warnings on Win32 (VC6)
2007-10-06 Craig A. Berry Re: several compilation problems on VMS in perl@32039
2007-10-06 Nicholas Clark Use the PERL_PV_PRETTY_NOCLEAR flag to simplify the...
2007-10-06 Nicholas Clark Avoid using *pvf functions when the format string is...
2007-10-06 Nicholas Clark Revert one hunk of change 32034 that had the possibilit...
2007-10-05 Nicholas Clark Eliminate the Perl_sv_catpvf() in TRIE_STORE_REVCHAR
2007-10-05 Nicholas Clark Eliminate most *printf-like calls that use a simple...
2007-09-26 Rafael Garcia-Suarez API spelling patch, by Jerry D. Hedden
2007-09-25 Tels Re: [perl #45605] Regexp failure with utf8-flagged...
2007-09-24 Dave Mitchell silence a spurious compiler warning in regcomp.c
2007-09-14 Dave Mitchell [perl #45337] utf8 + "[a]a{2}" + /$.../ = panic: sv_len...
2007-08-12 Reini Urban regcomp.c fix 64int warning
2007-08-09 Ævar Arnfjörð Bjar... Optimize split //
next