From: Chris Hanson Date: Tue, 15 Apr 2003 20:17:14 +0000 (+0000) Subject: Change CHAR-CODE-LIMIT to the actual Unicode limit, not just one that X-Git-Tag: 20090517-FFI~1924 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=e4ae07570ed78af2046a1924a21a4c372aec9810;p=mit-scheme.git Change CHAR-CODE-LIMIT to the actual Unicode limit, not just one that allows any 21-bit code. --- 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)