| Commit message (Expand) | Author | Age | Files | Lines |
* | Update Script Run code to use the Script Extension property instead of the | ph10 | 2018-10-09 | 4 | -0/+105 |
* | Fix bugs of omission in new script run code. | ph10 | 2018-10-03 | 4 | -0/+60 |
* | Basic "script run" implementation. Not yet complete, and not yet documented. | ph10 | 2018-10-02 | 7 | -0/+364 |
* | Implement Perl 5.28's alphabetic lookaround syntax, e.g. (*pla:...) and also | ph10 | 2018-09-24 | 6 | -3/+179 |
* | Implement PCRE2_EXTRA_ESCAPED_CR_IS_LF | ph10 | 2018-09-21 | 2 | -0/+19 |
* | Implement callouts from pcre2_substitute(). | ph10 | 2018-09-18 | 7 | -0/+49 |
* | Add "allvector" to pcre2test. | ph10 | 2018-09-15 | 2 | -0/+41 |
* | Treat empty-string-matching repeated conditionals the same as ordinary ones | ph10 | 2018-09-03 | 2 | -0/+123 |
* | Fix anchoring bug in conditionals with only one branch. | ph10 | 2018-09-02 | 2 | -0/+55 |
* | Lock out \N{U+hhhh} in non-UTF (non-Unicode) modes. | ph10 | 2018-09-02 | 2 | -0/+5 |
* | Fix bad auto-possessification of certain types of class. | ph10 | 2018-08-17 | 2 | -0/+21 |
* | Fix dynamic options changing bug. | ph10 | 2018-08-04 | 2 | -0/+13 |
* | Make /x more Perl-compatible by recognizing all of Unicode's "Pattern White | ph10 | 2018-08-03 | 6 | -2/+66 |
* | Add support for (?^) as now supported by Perl. | ph10 | 2018-07-28 | 4 | -0/+30 |
* | Give specific error for \F as for \L, \U etc. | ph10 | 2018-07-27 | 3 | -6/+11 |
* | Add support for \N{U+dd...}, for ASCII and Unicode modes only. | ph10 | 2018-07-27 | 6 | -4/+29 |
* | Add more tests for further ClusterFuzz issues, all were fixed by the previous | ph10 | 2018-07-22 | 2 | -0/+8 |
* | Fix oversight in recent OP_COMMIT_ARG update. | ph10 | 2018-07-22 | 2 | -0/+4 |
* | Some places where the new opcode OP_COMMIT_ARG needs to be handled and which I | ph10 | 2018-07-21 | 2 | -0/+10 |
* | Allow :NAME on (*ACCEPT), (*FAIL), and (*COMMIT) and fix bug with (*MARK) | ph10 | 2018-07-21 | 4 | -9/+95 |
* | Fixed atomic group backtracking bug. | ph10 | 2018-07-16 | 2 | -0/+14 |
* | Update Perl tester to allow for optimization to be turned off. Required moving | ph10 | 2018-07-14 | 4 | -18/+22 |
* | Documentation and tests update and minor tweak to perltest.sh. | ph10 | 2018-07-12 | 2 | -0/+24 |
* | Update to Unicode 11.0.0 | ph10 | 2018-07-07 | 4 | -68/+106 |
* | Fix bug in VERSION number reading. | ph10 | 2018-07-02 | 2 | -1/+8 |
* | Ignore qualifiers on lookaheads within lookbehinds when checking for a fixed | ph10 | 2018-07-02 | 4 | -0/+36 |
* | Fix global search/replace in pcre2test and pcre2_substitute() when the pattern | ph10 | 2018-07-02 | 4 | -1/+20 |
* | Fix bug when \K is used in a lookbehind in a substitute pattern. | ph10 | 2018-06-22 | 2 | -1/+8 |
* | More typos and changes to "Kibibytes" for "Kilobytes". | ph10 | 2018-06-18 | 2 | -18/+19 |
* | Ensure all match limit tests set a limit, don't rely on the default. | ph10 | 2018-04-29 | 6 | -2/+44 |
* | Remove ctrl/Z from the input for test 6. | ph10 | 2018-04-28 | 2 | -4/+4 |
* | Re-factor pcre2_dfa_match() to use the heap instead of the stack for workspace | ph10 | 2018-04-27 | 2 | -0/+19 |
* | Add support to pcre2grep for binary zeros in -f files. | ph10 | 2018-02-24 | 1 | -0/+3 |
* | Add another test. | ph10 | 2018-02-20 | 4 | -0/+15 |
* | Fix \C bug with repeated character classes in UTF-8 mode. | ph10 | 2018-02-19 | 4 | -0/+15 |
* | Fix the value passed back for POSIX unset groups when REG_STARTEND has a | ph10 | 2018-02-19 | 2 | -0/+19 |
* | Fix auto-possessification bug at the end of a capturing group that is called | ph10 | 2018-01-31 | 4 | -1/+219 |
* | Fix a typo in JIT and add a test. | zherczeg | 2018-01-10 | 2 | -0/+13 |
* | Support the new EXTUNI in JIT. | zherczeg | 2018-01-06 | 2 | -9/+9 |
* | Previous FIRSTLINE patch was broken. Fix it. | ph10 | 2018-01-01 | 4 | -0/+18 |
* | Fix PCRE2_FIRSTLINE bug when a pattern match starts with the first code unit of | ph10 | 2018-01-01 | 4 | -0/+46 |
* | Fix \K issues in pcre2grep. | ph10 | 2017-12-26 | 1 | -0/+9 |
* | Add callout_flags to callout blocks, and set bits within it from pcre2_match() | ph10 | 2017-12-22 | 5 | -71/+137 |
* | Save extra compile options with the compiled pattern, and add an info call to | ph10 | 2017-12-16 | 7 | -11/+38 |
* | Fix infelicity in not finding a first character inside a non-assertive group | ph10 | 2017-12-12 | 1 | -1/+1 |
* | Fix incorrect first matching character when a backreference with zero minimum | ph10 | 2017-12-12 | 2 | -0/+38 |
* | Fix multiple multiline matching issues in pcre2grep. | ph10 | 2017-11-13 | 2 | -5/+108 |
* | Fix oss-fuzz bugs 3852 and 3891 (same bug); mis-closing external captures by | ph10 | 2017-10-29 | 2 | -0/+27 |
* | Hyphen at the end of a character class is always literal. Give error for false | ph10 | 2017-07-29 | 8 | -62/+34 |
* | Fix bug in /xx implementation. | ph10 | 2017-07-25 | 2 | -0/+28 |