summaryrefslogtreecommitdiff
path: root/regcomp.c
Commit message (Expand)AuthorAgeFilesLines
...
* regcomp.c: set local flag in pass1 of charclass inversionKarl Williamson2012-07-191-5/+8
* regcomp.c: Keep separate list for [:word:] from \p{Word}Karl Williamson2012-07-191-47/+61
* regcomp.c: Convert boolean variable from a UVKarl Williamson2012-07-191-2/+2
* utf8.c: Create API so internals can be hiddenKarl Williamson2012-07-191-7/+2
* regcomp.h: Free up bit; downside is makes locale ANYOF nodes largeKarl Williamson2012-07-191-10/+17
* regcomp.c: Clarify, update comments, white-space reflowKarl Williamson2012-07-191-6/+10
* fix RT#114068 optimizer handles MEOL in middle of pattern improperlyYves Orton2012-07-131-0/+2
* fix -Uusedl buildsTony Cook2012-07-081-1/+1
* regcomp.c: Optimize /[0-9]/ into /\d/aKarl Williamson2012-06-291-2/+10
* regcomp.c: Optimize e.g., /[^\w]/, /[[^:word:]]/ into /\W/Karl Williamson2012-06-291-1/+135
* regcomp.c: Simply some node calculationsKarl Williamson2012-06-291-142/+44
* regcomp.c: Simplify compile time [^..] complementKarl Williamson2012-06-291-120/+31
* regcomp.c: Rename variable to reflect new purposeKarl Williamson2012-06-291-74/+76
* regcomp.c: Have a subroutine do the workKarl Williamson2012-06-291-14/+6
* regcomp.c: Remove obsolete codeKarl Williamson2012-06-291-192/+0
* regcomp.c: White-space, comments onlyKarl Williamson2012-06-291-83/+86
* regcomp.c: Remove unnecessary 'if' testKarl Williamson2012-06-291-2/+0
* regcomp.c: Use more inversion lists in [] char classesKarl Williamson2012-06-291-97/+241
* copy .offs only if not null.Francois Perrad2012-06-231-3/+5
* #101666: horrible regex parsing error error [sic]Yves Orton2012-06-231-1/+3
* turns out we cant maike a jump trie that starts with a NOTHING regopYves Orton2012-06-231-2/+8
* Refactor \x processing to single functionKarl Williamson2012-06-201-36/+33
* overloading: make qr fallback to "" betterDavid Mitchell2012-06-191-24/+41
* regcomp.c: Warn and don't emit a NUL for e.g. /\87/Karl Williamson2012-06-171-2/+2
* regcomp.c: Add commentsKarl Williamson2012-06-171-2/+41
* Use assertions for /* NOT REACHED */Father Chrysostomos2012-06-151-4/+4
* run-time /(?{})/: fix an buffer overrunDavid Mitchell2012-06-141-1/+1
* silence picky C compiler warningDavid Mitchell2012-06-141-1/+1
* propagate /msix and (?msix) etc flags into (??{})David Mitchell2012-06-131-2/+7
* propagate 'use re eval' into return from (??{})David Mitchell2012-06-131-0/+2
* eliminate PL_reg_start_tmp, PL_reg_start_tmplDavid Mitchell2012-06-131-2/+0
* make is_bare_re bool. not int in re_op_compileDavid Mitchell2012-06-131-3/+3
* eliminate RExC_seen_evals and RExC_rx->seen_evalsDavid Mitchell2012-06-131-8/+1
* eliminate PL_reginterp_cntDavid Mitchell2012-06-131-4/+1
* eliminate REG_SEEN_EVALDavid Mitchell2012-06-131-4/+3
* ensure regex evals report the right locationDavid Mitchell2012-06-131-2/+2
* Fix up runtime regex codeblocks.David Mitchell2012-06-131-128/+275
* add PMf_USE_RE_EVAL flagDavid Mitchell2012-06-131-2/+3
* mark a var as volatile to avoid longjmp warningDavid Mitchell2012-06-131-1/+1
* [perl #108780] Make /foo$qr/ work under ‘no overloading’Father Chrysostomos2012-06-131-0/+5
* regcomp.c: Silence valgrind warningKarl Williamson2012-06-131-1/+5
* force recompiling of regex where closures matterDavid Mitchell2012-06-131-6/+34
* add op_comp field to regexp_engine APIDavid Mitchell2012-06-131-32/+23
* re_op_compile(): merge the two 'eq old_re' checksDavid Mitchell2012-06-131-24/+14
* re_op_compile(): split flags into two argumentsDavid Mitchell2012-06-131-5/+14
* re_op_compile(): rename pm_flags to rx_flagsDavid Mitchell2012-06-131-14/+14
* add PMf_IS_QR flagDavid Mitchell2012-06-131-1/+1
* tidy up the description of re_op_compile()David Mitchell2012-06-131-11/+11
* preserve code blocks in interpolated qr//sDavid Mitchell2012-06-131-11/+66
* in re_op_compile(), keep code_blocks for qr//David Mitchell2012-06-131-10/+27