changeset 60515:7211619644bb

(ccl-encode-mule-utf-16le-with-signature): Fix BUFFER_MAGNIFICATION to 2. (ccl-encode-mule-utf-16be-with-signature): Likewise.
author Kenichi Handa <handa@m17n.org>
date Tue, 08 Mar 2005 09:10:18 +0000
parents 322d95d05b23
children fb4694e71d60
files lisp/international/utf-16.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/international/utf-16.el	Tue Mar 08 09:09:28 2005 +0000
+++ b/lisp/international/utf-16.el	Tue Mar 08 09:10:18 2005 +0000
@@ -411,7 +411,7 @@
 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 @@
 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))