Changeset 5362
- Timestamp:
- Oct 17, 2006, 1:02:43 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/ccl/level-1/l1-unicode.lisp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/level-1/l1-unicode.lisp
r5353 r5362 101 101 (aliases nil) 102 102 (documentation nil) 103 ;; What does a native byte-order-mark look like (as a sequence of octets) 104 ;; in this encoding ? (NIL if a BOM can't be encoded.) 105 (bom-encoding nil) 103 106 ) 104 107 … … 1232 1235 (setq nchars (1+ nchars) i nexti)))))) 1233 1236 :literal-char-code-limit #x80 1237 :bom-encoding #(#xef #xbb #xbf) 1234 1238 ) 1235 1239 … … 1895 1899 #+big-endian-target :utf-16le 1896 1900 #+little-endian-target :utf-16be 1901 :bom-encoding #+big-endian-target #(#xfe #xff) #+little-endian-target #(#xff fe) 1897 1902 ) 1898 1903 … … 2649 2654 #+big-endian-target :utf-32le 2650 2655 #+little-endian-target :utf-32be 2656 :bom-encoding #+big-endian-target #(#x00 #x00 #xfe #xff) #+little-endian-target #(#xff #xfe #x00 #x00) 2657 2651 2658 ) 2652 2659
Note:
See TracChangeset
for help on using the changeset viewer.
