summaryrefslogtreecommitdiff
path: root/pcre_tables.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove duplication typo.ph102017-04-301-2/+2
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1699 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Update to Unicode 7.0.0 releasechpe2014-06-191-140/+209
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1490 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Add \p{Xuc} to match characters identifiable by Universal Character Names.ph102013-02-271-6/+9
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1260 2f5784b3-3f2a-0410-8824-cb99058d5e15
* File tidies, preparing for 8.32-RC1.ph102012-11-111-21/+21
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1221 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Make ucp_gentype unsigned intchpe2012-10-181-1/+1
| | | | | | | It's compared against unsigned values, so change it to unsigned to quit a few -Wsign-compare warnings. git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1128 2f5784b3-3f2a-0410-8824-cb99058d5e15
* pcre32: Add 32-bit librarychpe2012-10-161-3/+3
| | | | | | | | | | Create libpcre32 that operates on 32-bit characters (UTF-32). This turned out to be surprisingly simple after the UTF-16 support was introduced; mostly just extra ifdefs and adjusting and adding some tests. git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1055 2f5784b3-3f2a-0410-8824-cb99058d5e15
* unicode: Update to Unicode 6.2chpe2012-09-301-1/+2
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1050 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Update character class handling to use new character case information; rework ph102012-09-231-0/+6
| | | | | | | \h, \H, \v, and \V to use the same apparatus with centrally defined lists. git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1045 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Improve extended grapheme clusters using a bit table.ph102012-08-261-35/+39
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1015 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Upgrade \X to match an extended grapheme clusterph102012-08-251-0/+55
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1011 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Document update for 8.31-RC1 test release.ph102012-06-021-145/+145
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@975 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Update for Unicode 6.1.0.ph102012-02-281-138/+159
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@942 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Merging all the changes from the pcre16 branch into the trunk.ph102011-12-281-27/+23
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@836 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Support OP_ANYBYTE in JIT when utf8 is disabled and optimizing utf8 ↵zherczeg2011-10-161-14/+4
| | | | | | character length computation git-svn-id: svn://vcs.exim.org/pcre/code/trunk@736 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Commit changes for JIT supportph102011-08-221-0/+38
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@666 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Documentation and general text tidies in preparation for test release.ph102011-08-021-140/+140
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@654 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Update tables to Unicode 6.0.0.ph102011-04-301-138/+147
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@592 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Add new special properties Xan, Xps, Xsp, Xwd to help with \w etc.ph102010-05-051-5/+17
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@517 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Tidies for 8.02-RC1 release.ph102010-03-101-133/+133
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@507 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Update Unicode tables to Unicode version 5.2.0.ph102010-03-011-118/+163
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@491 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Update after detrailing for a test release.ph102009-03-171-2/+2
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@392 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Add support for UTF-8 in EBCDIC environments.ph102009-03-171-121/+243
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@391 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Final tidies for new Unicode property code; upgrade to Unicode 5.1.0.ph102008-07-041-106/+144
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@351 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Update copyright year to 2008.ph102008-01-201-1/+1
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@305 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Detrailed files for 7.4-RC1 test release.ph102007-09-131-109/+109
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@243 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Refactoring to reduce the number of relocations in a shared library.ph102007-09-111-107/+220
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@240 2f5784b3-3f2a-0410-8824-cb99058d5e15
* <config.h> => "config.h" and also some cases of <pcre.h>.ph102007-09-111-1/+1
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@236 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Correct errors in previous patch; tidy for test release.ph102007-08-011-2/+2
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@200 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Daniel's patch for config.h and Windows DLL declarations (not fully working).ph102007-07-311-0/+4
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@199 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Update copyright years to 2007.ph102007-03-091-1/+1
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@117 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Added some additional #ifdef SUPPORT_UTF8 to minimize the code when UTF-8 ph102007-03-071-0/+4
| | | | | | | support is not compiled. git-svn-id: svn://vcs.exim.org/pcre/code/trunk@107 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Load pcre-7.0 into code/trunk.nigel2007-02-241-3/+7
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@93 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Load pcre-6.5 into code/trunk.nigel2007-02-241-41/+104
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@87 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Load pcre-6.4 into code/trunk.nigel2007-02-241-3/+4
| | | | git-svn-id: svn://vcs.exim.org/pcre/code/trunk@85 2f5784b3-3f2a-0410-8824-cb99058d5e15
* Load pcre-6.0 into code/trunk.nigel2007-02-241-0/+129
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@77 2f5784b3-3f2a-0410-8824-cb99058d5e15