X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Ftarget-char.lisp;h=aa52adbceca7b73f3364a379d225418180addc6c;hb=54da325f13fb41669869aea688ae195426c0e231;hp=7cef881ae909a12e778444b6bd6a00618743643c;hpb=0c08cc954cc0910079bdcf153cccf9a95ef11d67;p=sbcl.git diff --git a/src/code/target-char.lisp b/src/code/target-char.lisp index 7cef881..aa52adb 100644 --- a/src/code/target-char.lisp +++ b/src/code/target-char.lisp @@ -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 @@ -45,32 +45,38 @@ 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)