CHAR_CODE_LIMIT is the first value after the largest character code.

This commit is contained in:
jgarcia 2008-04-06 13:08:03 +00:00
parent 7fc9ef6dfe
commit f3377e8747

View file

@ -100,7 +100,7 @@ typedef unsigned @CL_FIXNUM_TYPE@ cl_hashkey;
* The character type
*/
#ifdef ECL_UNICODE
#define CHAR_CODE_LIMIT 1114111 /* unicode character code limit */
#define CHAR_CODE_LIMIT 1114112 /* unicode character code limit */
#else
#define CHAR_CODE_LIMIT 256 /* unicode character code limit */
#endif