summaryrefslogtreecommitdiff
path: root/regexec.c
Commit message (Expand)AuthorAgeFilesLines
* PATCH: [perl #115242]: /m and regex optimizer bug.Karl Williamson2012-10-201-2/+6
* regexec.c: regrepeat() change default: handlingKarl Williamson2012-10-191-2/+21
* regex: Make \R simple again.Karl Williamson2012-10-191-2/+20
* regexec.c: Fix bugs in regrepeat()Karl Williamson2012-10-191-38/+90
* regmatch(): fix out bounds array accessDavid Mitchell2012-10-191-2/+3
* regmatch(): add asserts for legal values of nextchrDavid Mitchell2012-10-191-0/+2
* regex: \R can match either 1 or 2 charsKarl Williamson2012-10-161-19/+2
* regcomp.c, regexec.c: Comments only; no code changesKarl Williamson2012-10-161-1/+1
* regexec.c: White-space only; no code changesKarl Williamson2012-10-161-11/+12
* regexec.c: Tighten loops in regrepeat()Karl Williamson2012-10-161-36/+42
* regexec: Do less work on quantified UTF-8Karl Williamson2012-10-161-168/+263
* regexec.c: Change variable nameKarl Williamson2012-10-161-12/+12
* regex: White-space, comment only; no code changesKarl Williamson2012-10-141-2/+1
* regex: Rename macro to reflect its narrowed useKarl Williamson2012-10-141-1/+1
* regex: Splice out no longer used array elementKarl Williamson2012-10-141-5/+5
* regex: Remove old code that tried to handle multi-char foldsKarl Williamson2012-10-141-176/+18
* regexec.c: Fix EXACT node handling in regrepeat()Karl Williamson2012-10-111-17/+35
* regexec.c: White-space only; comment only; no code changesKarl Williamson2012-10-091-27/+26
* regexec.c: Refactor slightly for clarityKarl Williamson2012-10-091-6/+4
* PATCH: [perl #114982]: case-insensitive regex bug with UTF8-flagged stringsKarl Williamson2012-10-091-53/+197
* regex: Allow any single char to be SIMPLEKarl Williamson2012-10-091-19/+26
* regcomp.c: Slightly relax restriction of SIMPLE nodesKarl Williamson2012-10-091-1/+0
* regexec.c: Turn test into an assertionKarl Williamson2012-10-091-2/+1
* regexec.c: White-space onlyKarl Williamson2012-10-091-5/+12
* regexec.c: indent properly and reflow some comments to 80 colsKarl Williamson2012-10-091-18/+24
* regexec.c: PATCH: [perl #114808]Karl Williamson2012-10-061-38/+85
* Fix spurious "uninitialized value" warning in regex matchAaron Crane2012-10-061-2/+9
* stop regex engine reading beyond end of stringDavid Mitchell2012-09-261-77/+132
* regmatch(): fix typo in TRIE commentary textDavid Mitchell2012-09-261-1/+1
* regmatch() annotate ops and separate out branchesDavid Mitchell2012-09-261-69/+113
* regmatch(): do nextchr=*locinput at top of loopDavid Mitchell2012-09-261-24/+7
* regmatch(): nextchar should always be positiveDavid Mitchell2012-09-261-2/+2
* regmatch(): consolidate locinput++David Mitchell2012-09-261-41/+21
* regmatch(): use nextchar where availableDavid Mitchell2012-09-261-2/+2
* regexec.c: Avoid unnecessary calculationKarl Williamson2012-09-161-17/+42
* regmatch(): eliminate reginput variableDavid Mitchell2012-09-141-20/+9
* regmatch(): remove remaining reads of reginputDavid Mitchell2012-09-141-2/+3
* regmatch(): remove reginput from CURLY etcDavid Mitchell2012-09-141-26/+23
* regmatch(): remove reginput from CURLYMDavid Mitchell2012-09-141-13/+8
* regmatch(): remove reginput from IFMATCH etcDavid Mitchell2012-09-141-8/+11
* regmatch(): remove reginput from TRIE_next_fail:David Mitchell2012-09-141-4/+6
* regmatch(): make PUSH_STATE_GOTO dest explicitDavid Mitchell2012-09-141-35/+38
* eliminate PL_reginputDavid Mitchell2012-09-141-65/+83
* Restore the build under -DPERL_OLD_COPY_ON_WRITENicholas Clark2012-09-141-1/+2
* Move 2 functions from utf8.c to regexec.cKarl Williamson2012-09-131-0/+68
* regexec.c: Use new macros instead of swashesKarl Williamson2012-09-131-51/+27
* Rename regen'd hdr to reflect expanded capabilitiesKarl Williamson2012-09-131-1/+1
* Fix \X handling for Unicode 5.1 - 6.0Karl Williamson2012-09-131-2/+5
* fix a bug in handling $+[0] and unicodeDavid Mitchell2012-09-081-2/+2
* Don't copy all of the match string bufferDavid Mitchell2012-09-081-7/+101