Changeset 5362


Ignore:
Timestamp:
Oct 17, 2006, 1:02:43 PM (18 years ago)
Author:
Gary Byers
Message:

BOM-ENCODING.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/level-1/l1-unicode.lisp

    r5353 r5362  
    101101  (aliases nil)
    102102  (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)
    103106  )
    104107
     
    12321235             (setq nchars (1+ nchars) i nexti))))))
    12331236    :literal-char-code-limit #x80
     1237    :bom-encoding #(#xef #xbb #xbf)
    12341238    )
    12351239
     
    18951899  #+big-endian-target :utf-16le
    18961900  #+little-endian-target :utf-16be
     1901  :bom-encoding #+big-endian-target #(#xfe #xff) #+little-endian-target #(#xff fe)
    18971902  )
    18981903
     
    26492654  #+big-endian-target :utf-32le
    26502655  #+little-endian-target :utf-32be
     2656  :bom-encoding #+big-endian-target #(#x00 #x00 #xfe #xff) #+little-endian-target #(#xff #xfe #x00 #x00)
     2657 
    26512658  )
    26522659
Note: See TracChangeset for help on using the changeset viewer.