This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
HEKf format
[perl5.git] / regexp.h
2011-06-02 Jim Cromieregexp.h: work around -Werror compile failure of XS...
2011-02-20 Karl WilliamsonAllow suffix form for /a /d /l /u
2011-02-20 Karl Williamsonregexp.h: The length of 'aa' is 2
2011-02-16 David Mitchelldocument how tainting works with pattern matching
2011-02-14 Karl WilliamsonInitial setup to accommodate /aa regex modifier
2011-01-17 Karl WilliamsonAdd /a regex modifier
2011-01-17 Karl WilliamsonChange name of /d to DEPENDS
2011-01-16 Karl WilliamsonUse multi-bit field for regex character set
2011-01-07 Peter J. Acklam... Fix typos (spelling errors) in Perl sources.
2010-12-08 David LeadbeaterThe docs for SvRX and SvRXOK still refered to magic...
2010-10-14 Father Chrysostomosregcomp.pl -> regen/regcomp.pl
2010-09-23 Karl WilliamsonAdd /d, /l, /u (infixed) regex modifiers
2010-09-23 Karl WilliamsonChange to use mnemonic instead of char constant
2010-09-20 Karl WilliamsonAdd (?^...) regex construct
2010-08-11 Karl Williamsonregexp.h: Move bits around
2010-08-11 Karl Williamsonop.h, regexp.h: renumber shifts.
2010-08-11 Karl Williamsonop_reg_common.h: Continue refactoring
2010-08-11 Karl Williamsonregexp.h: Nit in comments
2010-08-11 Karl Williamsonop_reg_common.h: Refactor variable for safety
2010-08-11 Karl Williamsonregexp.h, op.h: decouple mostly from op_reg_common.h
2010-08-11 Karl Williamsonregexp.h: Fix error check to use correct offset
2010-07-29 Karl WilliamsonRefactor common parts of op.h, regexp.h into new .h
2010-07-29 Karl Williamsonregexp.h: Add some comments
2010-06-06 David Mitchellreduce size of regmatch_state.u.curlyx by 2 words
2010-05-22 David CaldwellAdd s///r (non-destructive substitution).
2010-05-21 Nicholas ClarkRemove union _xivu from struct regexp - replace it...
2010-05-21 Nicholas ClarkIn the SV body, exchange the positions of the NV and...
2010-05-03 David Mitchelltries: don't allocate memory at runtime
2009-07-26 George Greermuch better swap logic to support reentrancy and fix...
2009-07-17 Nicholas ClarkEliminate struct regexp_allocated and xpvio_allocated.
2008-11-07 Marcus Holland-MoritzRevert SvPVX() to allow lvalue usage, but also add a
2008-10-30 Nicholas ClarkSvPV() does not take a const SV*, which means that...
2008-10-25 Nicholas ClarkUpdate copyright years.
2008-06-08 Reini UrbanRe: [PATCH] readable assertion names, now the rest
2008-02-12 Jan DuboisFix bit-fields for VC [was RE: [perl #50386] GIMME_V...
2008-01-26 Nicholas ClarkStandardise the conditional compilation protection...
2008-01-14 Robin Barkerconsting
2008-01-11 Nicholas ClarkWell, I know *something* passed make test from a clean...
2008-01-11 Nicholas Clarkassert that these are the regexps you were looking...
2008-01-09 Steve HayFix prototype in regexp code following #32851, and...
2008-01-07 Nicholas ClarkReREFCNT_inc() should return a pointer to REGEXP.
2008-01-05 Nicholas ClarkDon't allocate the NV slot for SVt_REGEXP.
2008-01-05 Nicholas ClarkIn struct regexp move the member paren_names to the...
2008-01-05 Nicholas ClarkConvert all accesses of the member paren_names of struc...
2008-01-05 Nicholas ClarkAbolish RXf_UTF8. Store the UTF-8-ness of the pattern...
2008-01-05 Nicholas ClarkAbolish wraplen from struct regexp. We're already stori...
2008-01-05 Nicholas ClarkAbolish RXp_PRELEN(rx) and RXp_WRAPLEN()
2008-01-05 Nicholas ClarkAbolish wrapped in struct regexp - store the wrapped...
2008-01-05 Nicholas ClarkAdd RX_UTF8(), which is effectively SvUTF8() but for...
2008-01-05 Nicholas ClarkFix the compile for -DPERL_OLD_COPY_ON_WRITE (apart...
2008-01-02 Nicholas ClarkMake struct regexp the body of SVt_REGEXP SVs, REGEXPs...
2008-01-02 Nicholas ClarkWrap all deferences of struct regexp* in macros RX_...
2007-12-29 Nicholas ClarkReorder the external regexp flags to get RXf_PMf_STD_PM...
2007-12-29 Nicholas ClarkThe position of the modifier flag bits is actually...
2007-12-29 Nicholas ClarkNote to future self about moving the regexp flag bits...
2007-12-29 Nicholas ClarkWrap wrapped and wraplen from struct regexp in macros...
2007-12-28 Nicholas ClarkEliminate prelen from struct regexp. Possibly we are...
2007-12-28 Nicholas ClarkEliminate precomp from struct regexp. Store the offset...
2007-12-28 Nicholas ClarkWrap all accesses to the members precomp and prelen...
2007-11-07 Nicholas ClarkFix up copyright years for files modified in 2007.
2007-08-18 Yves OrtonAdd note to regexp.h that modifying RXf_ type flags...
2007-08-09 Ævar Arnfjörð Bjar... Optimize split //
2007-06-30 Abigail/p vs (?p)
2007-06-29 Yves Ortonfix overzealous search and replace
2007-06-28 Yves OrtonRename various regex defined so that they have distinct...
2007-06-28 Ævar Arnfjörð Bjar... Move the RXf_WHITE logic for split " " into the regex...
2007-06-18 Ævar Arnfjörð Bjar... SvRX() and SvRXOK() macros
2007-06-06 Ævar Arnfjörð Bjar... Re: [PATCH] Callbacks for named captures (%+ and %-)
2007-05-20 Ævar Arnfjörð Bjar... Minor perlreapi.pod cleanup
2007-05-03 Ævar Arnfjörð Bjar... FETCH/STORE/LENGTH callbacks for numbered capture variables
2007-05-02 Yves Ortontweak some regexp params to avoid warnings
2007-04-30 Ævar Arnfjörð Bjar... Re: [PATCH] Cleanup of the regexp API
2007-04-23 Ævar Arnfjörð Bjar... Re: [PATCH (incomplete)] Make regcomp use SV* sv, inste...
2007-04-06 Ævar Arnfjörð Bjar... Re: Proposed changes and to regular expression interfac...
2007-04-04 Yves OrtonRe: pmdynflags and thread safety
2007-03-31 Nicholas ClarkReorder the members of various regexp structs to reduce...
2007-03-31 Nicholas Clarkprecomp in struct regexp can be const char *.
2007-03-26 Nicholas ClarkIn struct regexp replace the two arrays of I32s accesse...
2007-03-22 Yves OrtonResolve PL_curpm issues with (??{}) and fix corruption...
2007-02-26 Yves OrtonRe: Regexp recursion limit too low?
2007-02-14 Rafael Garcia-SuarezAllow to override MAX_RECURSE_EVAL_NOCHANGE_DEPTH,
2007-02-14 Yves OrtonRe: [PATCH] Document that m//k works
2007-02-13 Yves Ortonadd hooks for capture buffers into regex engine.
2007-02-03 Yves OrtonRe: prerelease checklist for Perl 5.10
2007-01-31 Yves OrtonImprove regex stringification code
2007-01-15 Yves OrtonRe: [PATCH] Add support for /k modfier for matching...
2007-01-15 Yves OrtonAdd support for /k modfier for matching along with...
2007-01-11 Yves OrtonAdd Regexp::Keep \K functionality to regex engine as...
2007-01-09 Yves OrtonLet the regex parser decide if we have a special patter...
2007-01-05 Rafael Garcia-SuarezUpdate copyright years in .h files. Also, in .pl
2006-12-05 Yves OrtonFurther tweaks to make it easier to create regexp engin...
2006-12-04 Rafael Garcia-SuarezBetter version of last patch, by Yves Orton.
2006-12-04 Rafael Garcia-SuarezThe new regexp compilation function must be added to...
2006-12-01 Yves OrtonContinue split of perl internal regexp structures from...
2006-11-23 Yves OrtonRe: [PATCH] Cleanup regexp flags and structure
2006-11-23 Yves OrtonCleanup regexp flags and structure
2006-11-22 Yves Orton\G with /g results in infinite loop in 5.6 and later
2006-11-16 Rafael Garcia-SuarezRemove duplicate declaration
2006-11-15 Yves OrtonRe: [PATCH] Fix RT#19049 and add relative backreferences
2006-11-14 Yves OrtonFwd: Memory leak with s/// and hashes
next