Restore building of +sb-unicode with -sb-unicode.
[sbcl.git] / src / code / target-char.lisp
index 7cef881..aa52adb 100644 (file)
@@ -19,7 +19,7 @@
 (declaim (maybe-inline digit-char-p digit-weight))
 
 (deftype char-code ()
-  `(integer 0 (,char-code-limit)))
+  `(integer 0 (,sb!xc:char-code-limit)))
 
 #!+sb-unicode
 (progn
                     array))))
          (let ((character-database (read-ub8-vector (file "ucd" "dat")))
                (decompositions (read-ub8-vector (file "decomp" "dat")))
-               (long-decompositions (read-ub8-vector (file "ldecomp" "dat"))))
+               (long-decompositions (read-ub8-vector (file "ldecomp" "dat")))
+               (primary-compositions (read-ub8-vector (file "comp" "dat"))))
            `(progn
-              (declaim (type (simple-array (unsigned-byte 8) (*)) **character-database** **character-decompositions** **character-long-decompositions**))
+              (declaim (type (simple-array (unsigned-byte 8) (*))
+                             **character-database**
+                             **character-decompositions**
+                             **character-long-decompositions**))
               (defglobal **character-database** ,character-database)
               (defglobal **character-decompositions** ,decompositions)
               (defglobal **character-long-decompositions** ,long-decompositions)
-              (defglobal **character-primary-compositions**
-                (let ((table (make-hash-table))
-                      (info ,(read-ub8-vector (file "comp" "dat"))))
-                  (flet ((code (j)
-                           (dpb (aref info (* 4 j))
-                                (byte 8 24)
-                                (dpb (aref info (+ (* 4 j) 1))
-                                     (byte 8 16)
-                                     (dpb (aref info (+ (* 4 j) 2))
-                                          (byte 8 8)
-                                          (aref info (+ (* 4 j) 3)))))))
-                    #!+sb-unicode
-                    (dotimes (i (/ (length info) 12))
-                      (setf (gethash (dpb (code (* 3 i)) (byte 21 21)
-                                          (code (1+ (* 3 i))))
-                                     table)
-                            (code-char (code (+ (* 3 i) 2)))))
-                    table)))
+              ;; KLUDGE: temporary value, fixed up in cold-load
+              (defglobal **character-primary-compositions** ,primary-compositions)
               (defun !character-database-cold-init ()
-                (setf **character-database** ,character-database))
+                (setf **character-database** ,character-database)
+                (setf **character-primary-compositions**
+                      (let ((table (make-hash-table))
+                            (info ,primary-compositions))
+                        (flet ((code (j)
+                                 (dpb (aref info (* 4 j))
+                                      (byte 8 24)
+                                      (dpb (aref info (+ (* 4 j) 1))
+                                           (byte 8 16)
+                                           (dpb (aref info (+ (* 4 j) 2))
+                                                (byte 8 8)
+                                                (aref info (+ (* 4 j) 3)))))))
+                          #!+sb-unicode
+                          (dotimes (i (/ (length info) 12))
+                            (setf (gethash (dpb (code (* 3 i)) (byte 21 21)
+                                                (code (1+ (* 3 i))))
+                                           table)
+                                  (code-char (code (+ (* 3 i) 2)))))
+                          table))))
               ,(with-open-file (stream (file "ucd-names" "lisp-expr")
                                        :direction :input
                                        :element-type 'character)