]> git.eshelyaron.com Git - emacs.git/commitdiff
(ccl-encode-mule-utf-16le-with-signature):
authorKenichi Handa <handa@m17n.org>
Tue, 8 Mar 2005 09:10:18 +0000 (09:10 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 8 Mar 2005 09:10:18 +0000 (09:10 +0000)
Fix BUFFER_MAGNIFICATION to 2.
(ccl-encode-mule-utf-16be-with-signature): Likewise.

lisp/international/utf-16.el

index 04c9f6821391db517009f7e701198a707adc6518..0c3d3724ea44ad63afaa7a20c5e0bba5d42bf182 100644 (file)
@@ -411,7 +411,7 @@ after translation through the translation-table named
 Others are encoded as U+FFFD.")
 
 (define-ccl-program ccl-encode-mule-utf-16le-with-signature
-  `(4
+  `(2
     ((write #xFF)
      (write #xFE)
      ,@utf-16le-encode-loop))
@@ -423,7 +423,7 @@ after translation through the translation-table of name
 Others are encoded as U+FFFD.")
 
 (define-ccl-program ccl-encode-mule-utf-16be-with-signature
-  `(4
+  `(2
     ((write #xFE)
      (write #xFF)
      ,@utf-16be-encode-loop))