From 2d8c4fd3adcc80b8a6953ad0f997fec1a91a87ff Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Tue, 26 Aug 2003 11:45:22 +0000 Subject: Fixed bug that ignored high bit of characters in comparisons. --- src/RESearch.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') 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 -- cgit v1.2.3