summaryrefslogtreecommitdiff
path: root/regcomp.c
Commit message (Expand)AuthorAgeFilesLines
* regcomp.c: Fix compiler warningKarl Williamson2010-10-101-1/+1
* [perl #77952] regcomp.c compiler warningsKarl Williamson2010-09-301-13/+22
* [perl #78040] regcomp.c: malloc enough spaceKarl Williamson2010-09-291-10/+23
* regcomp.c [perl #78058] qr/\18/ loopsKarl Williamson2010-09-281-1/+1
* regcomp.c: Convert some things to use cBOOL()Karl Williamson2010-09-221-4/+4
* Add /d, /l, /u (infixed) regex modifiersKarl Williamson2010-09-221-1/+39
* Change to use mnemonic instead of char constantKarl Williamson2010-09-221-2/+3
* Extract regcurly as a static inline function.Andy Dougherty2010-09-221-25/+2
* Add (?^...) regex constructKarl Williamson2010-09-201-12/+17
* regcomp.c: fix an improper indentKarl Williamson2010-09-201-1/+1
* Fix /[\8]/ to not match NULL; give correct warningKarl Williamson2010-09-161-5/+9
* PATCH: regex longjmp flawsKarl Williamson2010-09-151-1/+3
* regcomp.c: Use longjmp to abandon first pass quicklyKarl Williamson2010-09-131-20/+46
* regcomp.c: Macroize changing regex to utf8Karl Williamson2010-09-131-5/+6
* regcomp.c: Clarify and typos in commentsKarl Williamson2010-09-131-6/+9
* Change function signature of grok_bslash_oKarl Williamson2010-07-271-15/+20
* RT#75762: In CURLYX->CURLYM optimization, check before removing parentheses.George Greer2010-07-261-3/+1
* Fix address of register error from 26a0cb8David Golden2010-07-171-1/+6
* Add \o{} escapeKarl Williamson2010-07-171-0/+37
* \400 -\777 now means the same thing in all d-quoteKarl Williamson2010-07-171-11/+2
* Add Perl_croak_no_modify() to implement Perl_croak("%s", PL_no_modify).Nicholas Clark2010-06-271-2/+2
* Properly free paren_name_list with its regexp.Nicholas Clark2010-05-291-2/+4
* Add tested for corrupted regnodeKarl Williamson2010-05-291-0/+4
* Encapsulate lookups in PL_{varies,simple} within macros REGNODE_{VARIES,SIMPLE}Nicholas Clark2010-05-271-4/+4
* Convert Perl_sv_dup_inc() from a macro to a real function.Nicholas Clark2010-05-241-3/+2
* PATCH [perl #74978] dot after } breaks \N{}Karl Williamson2010-05-081-5/+3
* tries: don't allocate memory at runtimeDavid Mitchell2010-05-031-20/+65
* On the save stack, store the save type as the bottom 6 bits of a UV.Nicholas Clark2010-05-011-1/+1
* Deal with "\c{", and its kinKarl Williamson2010-04-261-4/+2
* 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