diff options
author | nyamatongwe <devnull@localhost> | 2003-08-26 11:45:22 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-08-26 11:45:22 +0000 |
commit | 2d8c4fd3adcc80b8a6953ad0f997fec1a91a87ff (patch) | |
tree | ca6ac66d215bed9e5ccf11c092a5b980a7a9a726 | |
parent | a63db2e7ddbeee1498dd4659cdf2820c2d5500a8 (diff) | |
download | scintilla-mirror-2d8c4fd3adcc80b8a6953ad0f997fec1a91a87ff.tar.gz |
Fixed bug that ignored high bit of characters in comparisons.
-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 |