diff options
author | nyamatongwe <devnull@localhost> | 2002-09-15 01:17:52 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-09-15 01:17:52 +0000 |
commit | efc290f18ba1bce6827f866554148bad0efff1ae (patch) | |
tree | 4e27e866891a6eddbc7708aece50672fda6ed092 /src | |
parent | fdcf8ba0bdf0de50fdcac58b14c184b15723280a (diff) | |
download | scintilla-mirror-efc290f18ba1bce6827f866554148bad0efff1ae.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 |