diff options
author | nyamatongwe <unknown> | 2002-09-28 00:33:28 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-09-28 00:33:28 +0000 |
commit | c0da3d705622cbea4033e1226e2e37502c2977d2 (patch) | |
tree | 9dae89737a5a1b19037ea327272b6e16b7a8f0d1 /src | |
parent | cdfba32efc5ccebea5e9952c383a82ef8ed64d2c (diff) | |
download | scintilla-mirror-c0da3d705622cbea4033e1226e2e37502c2977d2.tar.gz |
Fixed problem with character ranges caused by expansion to 8 bits.
Diffstat (limited to 'src')
-rw-r--r-- | src/RESearch.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/RESearch.cxx b/src/RESearch.cxx index e0f821d31..77d897782 100644 --- a/src/RESearch.cxx +++ b/src/RESearch.cxx @@ -30,6 +30,9 @@ * Modification history: * * $Log$ + * Revision 1.7 2002/09/28 00:33:28 nyamatongwe + * Fixed problem with character ranges caused by expansion to 8 bits. + * * Revision 1.6 2001/04/29 13:32:10 nyamatongwe * Addition of new target methods - versions of ReplaceTarget that take counted * strings to allow for nulls, SearchInTarget and Get/SetSearchFlags to use a @@ -685,7 +688,7 @@ static char chrtyp[MAXCHR] = { #define ANYSKIP 2 /* [CLO] ANY END ... */ #define CHRSKIP 3 /* [CLO] CHR chr END ... */ -#define CCLSKIP 18 /* [CLO] CCL 16bytes END ... */ +#define CCLSKIP 34 /* [CLO] CCL 32bytes END ... */ int RESearch::PMatch(CharacterIndexer &ci, int lp, int endp, char *ap) { int op, c, n; |