summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2019-09-09 17:00:19 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2019-09-09 17:00:19 +0000
commit9812e792bc5375dcfb460462a77101f78eee4b4d (patch)
treeababde6dd3a4d54aa5509c40de00cfafe042ceca /ChangeLog
parentbc7fb8964ca3a422f472189b0eff751c1cc377b0 (diff)
downloadpcre2-9812e792bc5375dcfb460462a77101f78eee4b4d.tar.gz
Optimize classes such as [Aa] to be a single caseless character.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@1168 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 948c147..dd348b9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -146,9 +146,13 @@ compile-time performance improvement).
31. Installed a .gitignore file on a user's suggestion. When using the svn
repository with git (through git svn) this helps keep it tidy.
-32. Add underflow check in JIT which may occure when the value of subject
+32. Add underflow check in JIT which may occur when the value of subject
string pointer is close to 0.
+33. Arrange for classes such as [Aa] which contain just the two cases of the
+same character, to be treated as a single caseless character. This causes the
+first and required code unit optimizations to kick in where relevant.
+
Version 10.33 16-April-2019
---------------------------