aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2005-03-08 09:10:18 +0000
committerKenichi Handa2005-03-08 09:10:18 +0000
commitf7c4d755beb506d9ba72c91071eecedc8bbaa6c2 (patch)
tree0f935a7ebd0a48a119b8ac416867d72b6a001846
parentd2968c52db31d6b94c95aead079216e39dcbba2f (diff)
downloademacs-f7c4d755beb506d9ba72c91071eecedc8bbaa6c2.tar.gz
emacs-f7c4d755beb506d9ba72c91071eecedc8bbaa6c2.zip
(ccl-encode-mule-utf-16le-with-signature):
Fix BUFFER_MAGNIFICATION to 2. (ccl-encode-mule-utf-16be-with-signature): Likewise.
-rw-r--r--lisp/international/utf-16.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/international/utf-16.el b/lisp/international/utf-16.el
index 04c9f682139..0c3d3724ea4 100644
--- a/lisp/international/utf-16.el
+++ b/lisp/international/utf-16.el
@@ -411,7 +411,7 @@ after translation through the translation-table named
411Others are encoded as U+FFFD.") 411Others are encoded as U+FFFD.")
412 412
413(define-ccl-program ccl-encode-mule-utf-16le-with-signature 413(define-ccl-program ccl-encode-mule-utf-16le-with-signature
414 `(4 414 `(2
415 ((write #xFF) 415 ((write #xFF)
416 (write #xFE) 416 (write #xFE)
417 ,@utf-16le-encode-loop)) 417 ,@utf-16le-encode-loop))
@@ -423,7 +423,7 @@ after translation through the translation-table of name
423Others are encoded as U+FFFD.") 423Others are encoded as U+FFFD.")
424 424
425(define-ccl-program ccl-encode-mule-utf-16be-with-signature 425(define-ccl-program ccl-encode-mule-utf-16be-with-signature
426 `(4 426 `(2
427 ((write #xFE) 427 ((write #xFE)
428 (write #xFF) 428 (write #xFF)
429 ,@utf-16be-encode-loop)) 429 ,@utf-16be-encode-loop))