diff options
author | nyamatongwe <unknown> | 2003-08-26 11:45:22 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-08-26 11:45:22 +0000 |
commit | f35883ab4d00fab80f9a71bc3895bfd52ccc234f (patch) | |
tree | ca6ac66d215bed9e5ccf11c092a5b980a7a9a726 /src | |
parent | 4fa1414d5dfb4a7ca6d8d362c987da41c467627b (diff) | |
download | scintilla-mirror-f35883ab4d00fab80f9a71bc3895bfd52ccc234f.tar.gz |
Fixed bug that ignored high bit of characters in comparisons.
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 e19d160f5..fcb9dedea 100644 --- a/src/RESearch.cxx +++ b/src/RESearch.cxx @@ -30,6 +30,9 @@ * Modification history: * * $Log$ + * Revision 1.10 2003/08/26 11:45:22 nyamatongwe + * Fixed bug that ignored high bit of characters in comparisons. + * * Revision 1.9 2003/03/21 10:36:08 nyamatongwe * Detect patterns too long in regular expression search. * @@ -258,7 +261,7 @@ * The following defines are not meant to be changeable. * They are for readability only. */ -#define BLKIND 0170 +#define BLKIND 0370 #define BITIND 07 #define ASCIIB 0177 |