diff options
author | nyamatongwe <unknown> | 2002-09-15 01:17:52 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-09-15 01:17:52 +0000 |
commit | e5cf6386ef2a982101286f2f7cea08895de59486 (patch) | |
tree | 4e27e866891a6eddbc7708aece50672fda6ed092 /src | |
parent | a58620e118bf7cd52828a36f8d7d74d5f155d775 (diff) | |
download | scintilla-mirror-e5cf6386ef2a982101286f2f7cea08895de59486.tar.gz |
made 8-bit safe.
Diffstat (limited to 'src')
-rw-r--r-- | src/RESearch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/RESearch.h b/src/RESearch.h index 28238bfb7..9d0f20389 100644 --- a/src/RESearch.h +++ b/src/RESearch.h @@ -13,7 +13,7 @@ * The following defines are not meant to be changeable. * They are for readability only. */ -#define MAXCHR 128 +#define MAXCHR 256 #define CHRBIT 8 #define BITBLK MAXCHR/CHRBIT |