summaryrefslogtreecommitdiff
path: root/regexec.c
Commit message (Expand)AuthorAgeFilesLines
* regexec.c: Don't give up on fold matching earlyKarl Williamson2010-11-071-0/+45
* regexec.c: change variable name to its purposeKarl Williamson2010-11-071-4/+6
* Correct grouping in S_reginclassFlorian Ragwitz2010-11-071-1/+1
* Fix a compiler warningFlorian Ragwitz2010-11-061-1/+1
* fix the trie part of rt-78356Yves Orton2010-11-031-1/+2
* Fix RT-70998: qq{\x{30ab}} =~ /\xab|\xa9/ produces warningscompileYves Orton2010-11-021-4/+10
* reginclass: Remove redundant testKarl Williamson2010-10-311-6/+3
* reginclass: Reorder fastest firstKarl Williamson2010-10-311-51/+55
* reginclass: Remove unnecessary testKarl Williamson2010-10-311-1/+1
* reginclass: Make explicit the length assumptionsKarl Williamson2010-10-311-7/+9
* reginclass: Rename variable for clarityKarl Williamson2010-10-311-4/+4
* regexec.c: reorder statements for speedKarl Williamson2010-10-311-4/+4
* regexec.c: Add clarifying commentKarl Williamson2010-10-311-1/+5
* reginclass: add some consts to prototypeKarl Williamson2010-10-311-1/+1
* regexec.c: Remove redundant line.Karl Williamson2010-10-311-1/+1
* reginclass: Return matched length even if not utf8Karl Williamson2010-10-311-10/+18
* reginclass: Change variable name for clarity.Karl Williamson2010-10-311-7/+9
* regexec.c: Document existing reginclass behaviorKarl Williamson2010-10-311-1/+7
* regexec.c: utf8 doesn't match /i nonutf8 selfKarl Williamson2010-10-211-30/+79
* regexec.c: utf8 doesn't match non-utf8 selfKarl Williamson2010-10-211-3/+37
* Subject: [perl #58182] partial: Add uni \s,\w matchingKarl Williamson2010-10-151-29/+73
* Subject: [PATCH] regexec.c: make macros fit 80 colsKarl Williamson2010-10-151-68/+68
* Subject: [PATCH] regexec.c: add and refactor macrosKarl Williamson2010-10-151-5/+27
* Fix typo spotted by avar++Florian Ragwitz2010-09-301-1/+1
* Document why we're not using the save stackFlorian Ragwitz2010-09-301-0/+14
* Localize PL_reg_state during re_evalsFlorian Ragwitz2010-09-291-1/+6
* eliminate unneeded code, and explain why the code was not neededYves Orton2010-08-261-2/+9
* VERB nodes in the regex engine should NOT be marked as JUMPABLE.Bram2010-08-261-1/+2
* fix rt75680 - when working with utf8 strings one must always use s+=UTF8SKIP(...Yves Orton2010-08-231-21/+56
* fix 'might be used uninitialized' in S_regmatchDavid Mitchell2010-08-181-1/+1
* when disabling regex implicit check string we must reset anchored flagYves Orton2010-06-241-0/+5
* regexec.c: change names of two vars for clarityKarl Williamson2010-06-071-169/+169
* reduce size of regmatch_state.u.curlyx by 2 wordsDavid Mitchell2010-06-061-13/+14
* micro-optimise a bit of trie codeDavid Mitchell2010-06-061-14/+13
* Change regexec.c to use new foldEQ functionsKarl Williamson2010-06-051-12/+12
* Clarify that count is bytes not unicode charactersKarl Williamson2010-05-291-1/+1
* Fix build warnings introduced by v5.13.0-139-ge0fa7e2Jerry D. Hedden2010-05-241-1/+2
* fix a couple of var typesDavid Mitchell2010-05-031-3/+3
* tries: don't allocate memory at runtimeDavid Mitchell2010-05-031-178/+209
* For SAVEt_REGCONTEXT, store the number of save stack entries used with the type.Nicholas Clark2010-05-021-7/+11
* On the save stack, store the save type as the bottom 6 bits of a UV.Nicholas Clark2010-05-011-2/+2
* Untangle REGCP_FRAME_ELEMS from REGCP_OTHER_ELEMS.Nicholas Clark2010-05-011-10/+11
* use cBOOL for bool castsDavid Mitchell2010-04-151-13/+13
* Allow U+0FFFF in regexKarl Williamson2009-12-201-2/+4
* Fix compile failure introduced in 37e2e78edfe0a224b8a615820f46db879584f523.Craig A. Berry2009-12-131-9/+9
* qr/\X/ expansionKarl Williamson2009-12-051-15/+229
* SvREFCNT_dec already checks if the SV is non-NULL (continued)Vincent Pit2009-11-081-2/+2
* disable non-unicode case insensitive trie matchingYves Orton2009-10-251-7/+2
* RT#69616: regexp SVs lose regexpness in assignmentBen Morrow2009-10-221-1/+1
* somewhat fix failing regex tests. but break lots of other stuff at the same timeYves Orton2009-10-191-18/+51