Change CHAR-CODE-LIMIT to the actual Unicode limit, not just one that
authorChris Hanson <org/chris-hanson/cph>
Tue, 15 Apr 2003 20:17:14 +0000 (20:17 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 15 Apr 2003 20:17:14 +0000 (20:17 +0000)
allows any 21-bit code.

v7/src/runtime/char.scm

index 8f87fd6bf6783c7641a0ac299bcc41a0c72d8613..86d07000926bbf33655c6797d97288ca7fbde145 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: char.scm,v 14.16 2003/02/28 04:36:04 cph Exp $
+$Id: char.scm,v 14.17 2003/04/15 20:17:14 cph Exp $
 
 Copyright 1986,1987,1988,1991,1995,1997 Massachusetts Institute of Technology
 Copyright 1998,2001,2003 Massachusetts Institute of Technology
@@ -34,7 +34,7 @@ USA.
   char->integer
   integer->char)
 
-(define-integrable char-code-limit #x200000)
+(define-integrable char-code-limit #x110000)
 (define-integrable char-bits-limit #x10)
 (define-integrable char-integer-limit #x2000000)