summaryrefslogtreecommitdiff
path: root/regcomp.c
Commit message (Expand)AuthorAgeFilesLines
* PATCH [perl #74978] dot after } breaks \N{}Karl Williamson2010-05-091-5/+3
* Don't multiply define Perl_regcurly in core and the re extension.Craig A. Berry2010-02-211-1/+2
* Improve handling of qq(\N{...}); and /xKarl Williamson2010-02-201-17/+53
* PATCH: [perl #56444] delayed interpolation of \N{...}Karl Williamson2010-02-191-255/+198
* In Perl_reg_temp_copy(), ensure SvMAGIC() is NULL in the new REGEXP.Nicholas Clark2010-02-181-0/+1
* [perl #72590] Panic if 'use strict' and forget 'my'Rafael Garcia-Suarez2010-02-111-0/+3
* Fix for non-regexps being upgraded to SVt_REGEXPNicholas Clark2010-02-091-0/+1
* fix SEGV in /\N{...}/David Mitchell2010-01-221-1/+1
* Ensure that pp_qr returns a new regexp SV each time. Resolves RT #69852.Nicholas Clark2009-12-021-1/+14
* SvREFCNT_dec already checks if the SV is non-NULL (continued)Vincent Pit2009-11-081-22/+10
* disable non-unicode case insensitive trie matchingYves Orton2009-10-251-6/+11
* RT#69616: regexp SVs lose regexpness in assignmentBen Morrow2009-10-221-3/+6
* Enable deprecation warnings by default.Nicholas Clark2009-10-161-1/+1
* ckWARNreg() and ckWARNregdep() now use string concatenation, like their brethrenNicholas Clark2009-10-121-4/+4
* Replace "%s"/SvPVX(sv_name) with "%"SVf/SVfARG(sv_name), which is UTF-8 safe.Nicholas Clark2009-10-121-10/+10
* In regcomp.c, where possible replace vWARN* with ckWARN*, using Perl_ck_warner.Nicholas Clark2009-10-121-50/+57
* much better swap logic to support reentrancy and fix assert failureGeorge Greer2009-07-261-2/+0
* Eliminate struct regexp_allocated and xpvio_allocated.Nicholas Clark2009-07-171-1/+2
* Some bugs in Perl regexp (core Perl issues)hv@crypt.org2009-07-021-5/+16
* Update RExC_npar and after_freeze correctly after the first branch of a (?| ....Vincent Pit2009-06-261-0/+7
* Implement new regex escape \NRafael Garcia-Suarez2009-06-161-9/+23
* Add warning about octal > 377 in some regexesKarl2009-01-161-0/+13
* create new unicode props as defined in POSIX spec (optionally use them in the...Yves Orton2008-11-071-12/+34
* Make sure inversion sign is shown in all anyof classes that we show in regpropYves Orton2008-11-071-10/+19
* Various changes to regex diagnostics and testingYves Orton2008-11-061-5/+18
* Reolve perlbug #59328: In re's, \N{U+...} doesn't match for ... > 256karl williamson2008-11-061-6/+16
* PATCH: Large omnibus patch to clean up the JRRT quotesTom Christiansen2008-11-021-1/+3
* [perl #56526] m/a{1,0}/ compiles but doesn't match a literal string Michael Cartmell2008-11-021-1/+1
* Explicitly specify some printf formats for constant strings.Rafael Garcia-Suarez2008-11-021-3/+3
* Eliminate (SV *) casts from the rest of *.c, picking up one (further)Nicholas Clark2008-10-301-14/+14
* SvPV() does not take a const SV*, which means that the pattern argumentNicholas Clark2008-10-301-3/+3
* Use pvs macros instead of pvn where possible.Marcus Holland-Moritz2008-10-291-2/+2
* Eliminate (AV *) casts in *.c.Nicholas Clark2008-10-291-6/+6
* Every remaining (HV *) cast in *.cNicholas Clark2008-10-281-2/+2
* ss_dup wrapper const casting analagous to change 34626.Nicholas Clark2008-10-281-2/+2
* Update copyright years.Nicholas Clark2008-10-251-1/+2
* Fix memory leak in // caused by single-char character classMarcus Holland-Moritz2008-10-181-0/+3
* Avoid allocating 1 extra regnode when duplicating a regexp.Nicholas Clark2008-10-051-1/+1
* Two missing 'static's, spotted by Merijn's smoker.Nicholas Clark2008-09-201-1/+1
* Welcome to refcount hell. Fix the leaks reported by #57024Marcus Holland-Moritz2008-07-181-5/+4
* Strength reduction optimisation seems to spot that a = a + 1; is justNicholas Clark2008-06-091-5/+1
* Re: [PATCH] More COW lvaluesReini Urban2008-06-091-2/+6
* fix misleading comment about Perl_re_dup_gutsDave Mitchell2008-05-181-2/+2
* 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