From e4ae07570ed78af2046a1924a21a4c372aec9810 Mon Sep 17 00:00:00 2001
From: Chris Hanson <org/chris-hanson/cph>
Date: Tue, 15 Apr 2003 20:17:14 +0000
Subject: [PATCH] Change CHAR-CODE-LIMIT to the actual Unicode limit, not just
 one that allows any 21-bit code.

---
 v7/src/runtime/char.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/v7/src/runtime/char.scm b/v7/src/runtime/char.scm
index 8f87fd6bf..86d070009 100644
--- a/v7/src/runtime/char.scm
+++ b/v7/src/runtime/char.scm
@@ -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)
 
-- 
2.25.1