1.0.19.33: Improved interrupt handling on darwin/x86[-64]
[sbcl/eslaughter.git] / src / code / char.lisp
blob56b3d2c0ed79d4dac796940516809b97fb443456
1 ;;;; character implementation stuff which is to be visible at
2 ;;;; build-the-cross-compiler time
4 ;;;; This software is part of the SBCL system. See the README file for
5 ;;;; more information.
6 ;;;;
7 ;;;; This software is derived from the CMU CL system, which was
8 ;;;; written at Carnegie Mellon University and released into the
9 ;;;; public domain. The software is in the public domain and is
10 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
11 ;;;; files for more information.
13 (in-package "SB!IMPL")
15 (def!constant sb!xc:char-code-limit #!-sb-unicode 256 #!+sb-unicode #x110000
16 #!+sb-doc
17 "the upper exclusive bound on values produced by CHAR-CODE")
19 (def!constant base-char-code-limit #!-sb-unicode 256 #!+sb-unicode 128)