]> git.eshelyaron.com Git - emacs.git/commitdiff
(ucs-unify-8859, ucs-fragment-8859): Adjusted for the name change:
authorKenichi Handa <handa@m17n.org>
Sat, 21 Jun 2003 02:25:19 +0000 (02:25 +0000)
committerKenichi Handa <handa@m17n.org>
Sat, 21 Jun 2003 02:25:19 +0000 (02:25 +0000)
xxx-utf-16-{le,be} -> xxx-utf-16{le,be}.

lisp/international/ucs-tables.el

index f182b3d1928eb4cbc93f74efe25d0796640962cc..b694165860f4f0300e611cdf0953e27667d1dadf 100644 (file)
@@ -1180,7 +1180,9 @@ everything on input operations."
 
   (when for-encode
     ;; Make mule-utf-* encode all characters in ucs-mule-to-mule-unicode.
-    (let ((coding-list '(mule-utf-8 mule-utf-16-be mule-utf-16-le)))
+    (let ((coding-list '(mule-utf-8 mule-utf-16be mule-utf-16le
+                                   mule-utf-16be-with-signature
+                                   mule-utf-16le-with-signature)))
       (define-translation-table 'utf-translation-table-for-encode
        ucs-mule-to-mule-unicode)
       (dolist (coding coding-list)
@@ -1219,7 +1221,9 @@ unification on input operations."
     ;; ucs-mule-to-mule-unicode except what was originally supported
     ;; and what is translated by utf-translation-table-for-decode when
     ;; `utf-fragment-on-decoding' is non-nil.
-    (let ((coding-list '(mule-utf-8 mule-utf-16-be mule-utf-16-le))
+    (let ((coding-list '(mule-utf-8 mule-utf-16be mule-utf-16le
+                                   mule-utf-16be-with-signature
+                                   mule-utf-16le-with-signature))
          (safe (coding-system-get 'mule-utf-8 'safe-chars)))
       (dolist (coding coding-list)
        (set-char-table-parent (coding-system-get coding 'safe-chars) nil))